Line 85: | Line 85: | ||
[[JavaHowTo CalculatePSNR|How to calculate PSNR]] | [[JavaHowTo CalculatePSNR|How to calculate PSNR]] | ||
+ | |||
+ | ==Database== | ||
+ | |||
+ | [[JavaHowTo SqlConnection|How to get Connection]] | ||
+ | |||
+ | [[JavaHowTo SqlStatement|How to get Statement]] | ||
+ | |||
+ | [[JavaHowTo SqlPreparedStatment|How to get PreparedStatement]] | ||
+ | |||
+ | [[JavaHowTo SqlExecuteQuery|How to execute query]] | ||
+ | |||
+ | [[JavaHowTo SqlExecuteQueryOne|How to execute query and get the single value]] | ||
+ | |||
+ | [[JavaHowTo SqlUpdateQuery|How to update database]] | ||
+ | |||
+ | [[JavaHowTo SqlResultSetLength|How to get the number of rows of the ResultSet]] | ||
+ | |||
+ | [[JavaHowTo SqlResultSetPrint|How to print the ResultSet]] | ||
+ | |||
+ | [[JavaHowTo SqlGetCol|How to get the array for specific column from the ResultSet]] | ||
+ | |||
+ | [[JavaHowTo SqlGetDriver|How to get the Sql driver's name of the Connection]] | ||
==Etc.== | ==Etc.== |
Revision as of 16:30, 22 March 2011
Contents
Conversion
How to convert object array to string array
How to convert object to byte array
How to convert byte array to object
How to convert byte array to file
How to convert file to byte array
How to convert double to string
How to convert string to integer
How to convert string to double
How to convert object to integer
How to convert object to double
How to convert byte array to hex
How to convert byte array to integer array
How to convert integer array to byte array
How to convert unsigned type that is written in C
FEC
How to interleave and deinterleave
File
How to wait a file to be ready
How to save a string to a file
How to read string from a file
GUI
How to add string to JTextArea
Math
Util
How to execute an external program
Video
How to convert YUV color to RGB color
Database
How to execute query and get the single value
How to get the number of rows of the ResultSet
How to get the array for specific column from the ResultSet
How to get the Sql driver's name of the Connection