代码搜索:Getting
找到约 2,749 项符合「Getting」的源代码
代码结果 2,749
www.eeworm.com/read/127767/14337530
txt e529. getting the declared entities in a dom document.txt
The entities declared in the DTD of an XML document are available in the DOM document. Unfortunately, with J2SE 1.4's default parser, only the names, not the values, are available. In order to obtain
www.eeworm.com/read/127767/14337596
txt e460. getting the bytes of a generated symmetric key.txt
try {
// Generate a key
KeyGenerator keyGen = KeyGenerator.getInstance("DESede");
SecretKey key = keyGen.generateKey();
// Get the bytes of the key
b
www.eeworm.com/read/127767/14337637
txt e753. getting and setting the state of a jcheckbox component.txt
// To create a checkbox, see e752 Creating a JCheckbox Component
// Get the current state of the checkbox
boolean b = checkbox.isSelected();
// Set the state of the checkbox
www.eeworm.com/read/127767/14337660
txt e086. getting and setting the value of a system property.txt
// Get a system property
String dir = System.getProperty("user.dir");
// Set a system property
String previousValue = System.setProperty("application.property", "newValue");
www.eeworm.com/read/127767/14337672
txt e1073. getting the root element in a dom document.txt
The root element of an XML file is not the same as the root element of a DOM document. In particular, the XML root element is a child of the DOM's root element. The reason is that the XML root element
www.eeworm.com/read/127767/14337707
txt e280. getting the stored procedure names in a database.txt
This example retrieves the names of all stored procedures in a database.
try {
// Get database metadata
DatabaseMetaData dbmd = connection.getMetaData();
// Get
www.eeworm.com/read/127767/14337711
txt e637. getting and setting text on the system clipboard.txt
This examples defines methods for getting and setting text on the system clipboard.
// If a string is on the system clipboard, this method returns it;
// otherwise it returns null.
pub
www.eeworm.com/read/127767/14337721
txt e254. getting the column names in a result set.txt
try {
// Create a result set
Statement stmt = connection.createStatement();
ResultSet rs = stmt.executeQuery("SELECT * FROM my_table");
// Get result set meta
www.eeworm.com/read/127767/14337749
txt e795. getting and setting the values of a jslider component.txt
// To create a slider, see e794 Creating a JSlider Component
// Get the current value
int value = slider.getValue();
// Get the minimum value
int min = slider.getMinimu
www.eeworm.com/read/127767/14337778
txt e1045. getting the client's address in a servlet.txt
// See also e1035 The Quintessential Servlet
// This method is called by the servlet container to process a GET request.
public void doGet(HttpServletRequest req, HttpServletResponse r