代码搜索:Creating

找到约 10,000 项符合「Creating」的源代码

代码结果 10,000
www.eeworm.com/read/127767/14336935

txt e273. creating an updatable result set.txt

An updatable result set allows modification to data in a table through the result set. If the database does not support updatable result sets, the result sets returned from executeQuery() will be read
www.eeworm.com/read/127767/14336947

txt e219. creating a new policy file.txt

Use policytool to create or edit an existing policy file. This is an example of a policy file created using policytool. It grants two permissions. It grants code signed by Duke permission to read file
www.eeworm.com/read/127767/14336954

txt e382. creating a manifest for a jar file.txt

A manifest for a JAR file can only be created from an input stream. This example creates a manifest from a file and from a constructed string. The format of a manifest is described in: http://ja
www.eeworm.com/read/127767/14337118

txt e398. creating a custom log level.txt

To create a custom level, the Level class must be subclassed. public class MyLevel extends Level { // Create the new level public static final Level DISASTER = new MyLevel("DIS
www.eeworm.com/read/127767/14337219

txt e787. creating an hour jspinner component.txt

// Create a calendar object and initialize to a particular hour if desired Calendar calendar = new GregorianCalendar(); calendar.set(Calendar.HOUR_OF_DAY, 13); // 1pm // Create a
www.eeworm.com/read/127767/14337328

txt e267. creating a scrollable result set.txt

A scrollable result set allows the cursor to be moved to any row in the result set. This capability is useful for GUI tools for browsing result sets. See also e266 Determining If a Database Supports
www.eeworm.com/read/127767/14337511

txt e945. creating a scrollable jtable component.txt

// Create a table with 10 rows and 5 columns JTable table = new JTable(10, 5); // Make the table vertically scrollable JScrollPane scrollPane = new JScrollPane(table); By defau
www.eeworm.com/read/127767/14337656

txt e500. creating an ssl server socket.txt

An SSL server socket requires certificates that it will send to clients for authentication. The certificates must be contained in a keystore whose location must be explicitly specified (there is no de
www.eeworm.com/read/127767/14337870

txt e481. creating an initial context to a directory.txt

This example uses the JNDI/LDAP service provider to connect to an LDAP server on the local machine. String url = "ldap://localhost/o=JNDITutorial"; Hashtable env = new Hashtable(); env
www.eeworm.com/read/127767/14337924

txt e181. creating a file lock on a file.txt

The behavior of the file lock is platform-dependent. On some platforms, the file lock is advisory, which means that unless an application checks for a file lock, it will not be prevented from accessin