(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Convert==
+
==Conversion==
 
[[JavaHowTo ConvertObjectArrayToStringArray|How to convert object array to string array]]
 
[[JavaHowTo ConvertObjectArrayToStringArray|How to convert object array to string array]]
  
Line 32: Line 32:
 
[[JavaHowTo ConvertIntegerArrayToByteArray|How to convert integer array to byte array]]
 
[[JavaHowTo ConvertIntegerArrayToByteArray|How to convert integer array to byte array]]
  
[[JavaHowTo ConvertUnsignedType|How to convert unsigned type (written in C)]]
+
[[JavaHowTo ConvertUnsignedType|How to convert unsigned type that is written in C]]
  
 
[[JavaHowTo ConvertLongToIP|How to convert long to IP]]
 
[[JavaHowTo ConvertLongToIP|How to convert long to IP]]
  
 
[[JavaHowTo ConvertIPToLong|How to convert IP to long]]
 
[[JavaHowTo ConvertIPToLong|How to convert IP to long]]
 +
 +
==FEC==
 +
[[JavaHowTo InterleaveAndDeinterleave|How to interleave and deinterleave]]
 +
 +
[[JavaHowTo UniformError|How to apply uniform error]]
 +
 +
==File==
 +
[[JavaHowTo CurrentPath|How to get the current path]]
 +
 +
[[JavaHowTo CreateDirectory|How to create directory]]
 +
 +
[[JavaHowTo WaitFile|How to wait a file to be ready]]
 +
 +
[[JavaHowTo CountLines|How to count lines]]
 +
 +
[[JavaHowTo FileFromString|How to save a string to a file]]
 +
 +
[[JavaHowTo FileToStringArray|How to read string from a file]]
 +
 +
[[JavaHowTo FileGetTmp|How to get a temporary file]]
 +
 +
[[JavaHowTo FileIsIdentical|How to compare two files]]
 +
 +
[[JavaHowTo FileCompress|How to compress and extract a single file]]
 +
 +
[[JavaHowTo FileCompressMulti|How to compress and extract multiple files]]
 +
 +
==GUI==
 +
[[JavaHowTo ApplyLookAndFeel|How to apply a look and feel]]
 +
 +
[[JavaHowTo SimpleTableModel|How to write a table model]]
 +
 +
[[JavaHowTo UndoManager|How to get UndoManager]]
 +
 +
[[JavaHowTo FileOpenDialog|How to show File Open Dialog]]
 +
 +
[[JavaHowTo JTextAreaAddString|How to add string to JTextArea]]
  
 
==Math==
 
==Math==
Line 50: Line 87:
 
[[JavaHowTo ExecuteExternalProgram|How to execute an external program]]
 
[[JavaHowTo ExecuteExternalProgram|How to execute an external program]]
  
==FEC==
+
==Video==
[[JavaHowTo InterleaveAndDeinterleave|How to interleave and deinterleave]]
+
[[JavaHowTo ColorConversion|How to convert YUV color to RGB color]]
 +
 
 +
[[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.==
[[JavaHowTo ColorConversion|How to convert YUV color to RGB color]]
+
[[JavaHowTo EncryptDecrypt| How to encrypt and decrypt]]
  
[[JavaHowTo ApplyLookAndFeel|How to apply a look and feel]]
 
  
[[JavaHowTo SimpleTableModel|How to simplify a table model]]
+
[[Java|Back to Java]]

Latest revision as of 17:56, 22 March 2011

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 object to file

How to convert file to object

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 to binary

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

How to convert long to IP

How to convert IP to long

FEC

How to interleave and deinterleave

How to apply uniform error

File

How to get the current path

How to create directory

How to wait a file to be ready

How to count lines

How to save a string to a file

How to read string from a file

How to get a temporary file

How to compare two files

How to compress and extract a single file

How to compress and extract multiple files

GUI

How to apply a look and feel

How to write a table model

How to get UndoManager

How to show File Open Dialog

How to add string to JTextArea

Math

How to compute factorial

How to compute combination

Util

How to compute time duration

How to use property file

How to execute an external program

Video

How to convert YUV color to RGB color

How to calculate PSNR

Database

How to get Connection

How to get Statement

How to get PreparedStatement

How to execute query

How to execute query and get the single value

How to update database

How to get the number of rows of the ResultSet

How to print the ResultSet

How to get the array for specific column from the ResultSet

How to get the Sql driver's name of the Connection

Etc.

How to encrypt and decrypt


Back to Java

Alumni Liaison

Questions/answers with a recent ECE grad

Ryne Rayburn