(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 17:05, 22 March 2011 (diff | hist) . . (+3,517) . . N JavaHowTo FileCompressMulti (New page: <source lang="java"> public static void fileCompressMultiEn(java.io.File[] fileList, java.io.File compressedFile) { java.io.FileOutputStream fos = null; try { fos = new java.io.FileOu...) (current)
- 17:02, 22 March 2011 (diff | hist) . . (+2,741) . . N JavaHowTo FileCompress (New page: <source lang="java"> public static void fileCompressEn(String fileNameNormal, String fileNameCompressed) { java.io.BufferedInputStream in = Ts.convertFileToBufferedInputStream(fileNameNo...) (current)
- 16:58, 22 March 2011 (diff | hist) . . (+1,901) . . N JavaHowTo FileIsIdentical (New page: <source lang="java"> →* * Compare the contents of two files. * @param fileName1 * @param fileName2 * @return: public static boolean fileIsIdentical(String fileName1, String fileNa...) (current)
- 16:56, 22 March 2011 (diff | hist) . . (+202) . . JavaHowTo (current)
- 16:44, 22 March 2011 (diff | hist) . . (+1,266) . . N JavaHowTo SqlGetDriver (New page: <source lang="java"> →* * Get sql driver from the given connection. * @param conn * @return: public static String sqlGetDriver(java.sql.Connection conn) { String driver = null; t...) (current)
- 16:43, 22 March 2011 (diff | hist) . . (+3) . . JavaHowTo SqlGetCol (current)
- 16:42, 22 March 2011 (diff | hist) . . (+2,117) . . N JavaHowTo SqlGetCol (New page: <source lang="java"> →* * Return the string array for specific column. First colum is 1 rather than 0. * @param rs * @param colNum start from one * @return: public static String[]...)
- 16:41, 22 March 2011 (diff | hist) . . (+1,134) . . N JavaHowTo SqlResultSetPrint (New page: <source lang="java"> →* * Print the ResultSet object. * @param rs the ResultSet object: public static void sqlResultSetPrint(java.sql.ResultSet rs) { try { java.sql.ResultSetMeta...) (current)
- 16:41, 22 March 2011 (diff | hist) . . (+744) . . N JavaHowTo SqlResultSetLength (New page: <source lang="java"> →* * Get the number of rows of the ResultSet object. * @param rs the ResultSet object * @return the number of rows of the ResultSet object: public static int s...) (current)
- 16:40, 22 March 2011 (diff | hist) . . (+990) . . N JavaHowTo SqlUpdateQuery (New page: <source lang="java"> →* * Update database. * @param stat the Statement object * @param query the query that is intended to execute * @return the number of updated rows: public sta...) (current)
- 16:39, 22 March 2011 (diff | hist) . . (+438) . . JavaHowTo SqlExecuteQuery (current)
- 16:39, 22 March 2011 (diff | hist) . . (+1,442) . . N JavaHowTo SqlExecuteQueryOne (New page: <source lang="java"> public static int sqlExecuteQueryOneInt(java.sql.Statement stat, String query) { java.sql.ResultSet rs = null; int result = 0; try { rs = stat.executeQuery(query...) (current)
- 16:37, 22 March 2011 (diff | hist) . . (+910) . . N JavaHowTo SqlExecuteQuery (New page: <source lang="java"> public static java.sql.ResultSet sqlExecuteQuery(java.sql.PreparedStatement pre) { java.sql.ResultSet rs = null; try { rs = pre.executeQuery(); } catch (java.sql...)
- 16:36, 22 March 2011 (diff | hist) . . (+721) . . N JavaHowTo SqlPreparedStatment (New page: <source lang="java"> public static java.sql.PreparedStatement sqlGetPreparedStatement(java.sql.Connection conn, String query) { java.sql.PreparedStatement pre = null; try { pre = conn...) (current)
- 16:35, 22 March 2011 (diff | hist) . . (-1) . . JavaHowTo SqlStatement (current)
- 16:35, 22 March 2011 (diff | hist) . . (+308) . . JavaHowTo SqlStatement
- 16:34, 22 March 2011 (diff | hist) . . (+501) . . N JavaHowTo SqlStatement (New page: <source lang="java"> →* * Get the Statement from SQL Connection. * @param conn the SQL Connection * @return: public static java.sql.Statement sqlGetStatement(java.sql.Connection co...)
- 16:32, 22 March 2011 (diff | hist) . . (+5) . . JavaHowTo SqlConnection (current)
- 16:32, 22 March 2011 (diff | hist) . . (+2,274) . . N JavaHowTo SqlConnection (New page: <source lang="java"> →* * Get the SQL Connection. * @param drivers * @param url * @param username * @param password * @return: public static java.sql.Connection sqlGetConnection(...)
- 16:30, 22 March 2011 (diff | hist) . . (+668) . . JavaHowTo
- 14:56, 22 March 2011 (diff | hist) . . (+69) . . User:Han84 (current)
- 14:47, 22 March 2011 (diff | hist) . . (+451) . . Analysis Bounty Awarded to Sangchun Han
- 05:29, 21 March 2011 (diff | hist) . . (-1,065) . . Analysis Bounty Awarded to Sangchun Han
- 04:59, 21 March 2011 (diff | hist) . . (+859) . . Rhea Graph Analytic Tool
- 21:31, 9 February 2011 (diff | hist) . . (+30) . . Chess (current)
- 21:25, 9 February 2011 (diff | hist) . . (+287) . . JavaHowTo SimpleTableModel (current)
- 21:20, 9 February 2011 (diff | hist) . . (-3) . . JavaHowTo
- 21:12, 9 February 2011 (diff | hist) . . (+515) . . N JavaHowTo FileGetTmp (New page: <source lang="java"> public static java.io.File fileGetTmp() { java.io.File tmp = null; try { tmp = java.io.File.createTempFile("temp", null); } catch (java.io.IOException ex) { Ts....) (current)
- 21:10, 9 February 2011 (diff | hist) . . (+54) . . JavaHowTo
- 21:05, 9 February 2011 (diff | hist) . . (+345) . . N JavaHowTo JTextAreaAddString (New page: <source lang="java"> public static void guiJTextAreaAddString(final javax.swing.JTextArea area, final String msg) { new Thread(new Runnable() { public void run() { String txt = area....) (current)
- 21:04, 9 February 2011 (diff | hist) . . (+65) . . JavaHowTo
- 21:00, 9 February 2011 (diff | hist) . . (+20) . . User:Han84
- 20:59, 9 February 2011 (diff | hist) . . (+818) . . N Chess Software (New page: = Rhea Chess Software = == Notice == This program is a beta version. Although this program is originally designed for network game, the server program is not running because of the probl...) (current)
- 08:44, 29 December 2010 (diff | hist) . . (+42) . . User:Han84
- 08:40, 29 December 2010 (diff | hist) . . (+24) . . Rhea Graph Analytic Tool
- 08:37, 29 December 2010 (diff | hist) . . (+150) . . Rhea Graph Analytic Tool
- 08:33, 29 December 2010 (diff | hist) . . (+2,706) . . N Rhea Graph Analytic Tool (New page: = Rhea Graph Analytic Tool = This program is for Analysis Bounty. == How to run? == This program uses Java Web Start. Thus, it is required to install Java. You can che...)
- 06:48, 29 December 2010 (diff | hist) . . (0) . . N File:RheaGraphAnalyticTool.png (current)
- 12:55, 23 December 2010 (diff | hist) . . (+1) . . m User:Han84
- 12:54, 23 December 2010 (diff | hist) . . (+33) . . User:Han84
- 12:50, 23 December 2010 (diff | hist) . . (0) . . N File:Sangchun Han.png (current)
- 12:42, 23 December 2010 (diff | hist) . . (+368) . . User:Han84
- 03:10, 20 December 2010 (diff | hist) . . (+52) . . User:Han84
- 07:10, 4 December 2010 (diff | hist) . . (+6) . . JavaHowTo
- 07:07, 4 December 2010 (diff | hist) . . (0) . . JavaHowTo
- 07:06, 4 December 2010 (diff | hist) . . (+3) . . JavaHowTo
- 07:05, 4 December 2010 (diff | hist) . . (+3,940) . . N JavaHowTo EncryptDecrypt (New page: <source lang="java"> →* * Encrypt the bytes using given password. * @param input the bytes that are intended to be encrypted * @param pwd the password * @return: public static byte...) (current)
- 07:02, 4 December 2010 (diff | hist) . . (+3,009) . . N JavaHowTo CalculatePSNR (New page: <source lang="java"> →* * Define video types according to the size.: public static enum videoType { //----- 176 * 144 QCIF, //----- QCIF * 2 = 352 * 288 CIF, //----- CIF * 2 = 70...) (current)
- 06:57, 4 December 2010 (diff | hist) . . (+589) . . N JavaHowTo FileOpenDialog (New page: <source lang="java"> →* * Display file open dialog easily.: public static java.io.File guiOpenFile(java.awt.Component caller, String homeDirectory) { javax.swing.JFileChooser fc = ne...) (current)
- 06:56, 4 December 2010 (diff | hist) . . (+666) . . N JavaHowTo UndoManager (New page: <source lang="java"> →* * Add the undo and redo functionality for text area or text field. * Returned undoManager is used for undo and redo operations. * @param compt * @return: pu...) (current)
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)