md5加密小例子:
import java.security.MessageDigest;
public class StringMD5 {
private final static String[] hexDigits = { "0", "1", "2", "3", "4", "5",
"6", "7", "8", "9", "a", "b", "c", "d", "e", "f" };
/**
* 轉換位元組數組為16進制字串
*
* @param b
* 位元組數組
* @return 16進制字串
*/
public static String byteArrayToHexString(byte[] b) {
StringBuffer resultSb = new StringBuffer();
for (int i = 0; i < b.length; i++) {
resultSb.append(byteToHexString(b[i]));
}
return resultSb.toString();
}
private static String byteToHexString(byte b) {
int n = b;
if (n < 0)
n = 256 + n;
int d1 = n / 16;
int d2 = n % 16;
return hexDigits[d1] + hexDigits[d2];
}
public static String MD5Encode(String origin) {
String resultString = null;
try {
resultString = new String(origin);
MessageDigest md = MessageDigest.getInstance("MD5");
resultString = byteArrayToHexString(md.digest(resultString
.getBytes()));
} catch (Exception ex) {
}
return resultString;
}
public static void main(String[] args) {
StringMD5 test = new StringMD5();
String var = test.MD5Encode("123456");
System.out.println(var);
}
}
『貳』 一段java源代碼
找本書看看吧,都是很簡單的東西,控制項和事件處理。
『肆』 請教一下,Itext 怎麼把xml文件轉換為pdf文件啊能發下你的java源碼
和一般的文本文件處理一樣的,,,,,網路結果太多這樣的例子了
『伍』 Java源代碼注釋
你的這段代碼是獲取配置文件中資料庫配置信息
配置內容都在DBConfig.txt 這個文件中了
package dda;
import java.sql.*;
import java.io.LineNumberReader;
import java.io.FileReader;
import java.util.StringTokenizer;
/**
*
* 讀取配置文件DBConfig.txt中的配置信息
* @author xxx
* @version 1.0
*/
public class DbConnection {
Connection conn = null;
ResultSet rs = null;
boolean b;
public DbConnection() {
this.b = false;
this.getDBConfig();
}
/* 定義變數 */鎮並
String strSeparate = " ";
String strFileName = "DBConfig.txt";
String strUserID = null;
String strUserPWD = null;
String strDB = null;
public void getDBConfig() {
this.getDBConfig();
try {
LineNumberReader oLineNumberReader = new LineNumberReader(
new FileReader(this.strFileName)); // 從 DBConfig.txt 文件中讀取資料庫配置
String strLine = null;
while ((strLine = oLineNumberReader.readLine()) != null) {// 遍歷配置文件中每一行數據
StringTokenizer token = new StringTokenizer(strLine,(new String(this.strSeparate).toString())); // 按空格拆分配置寬旅帶內容
/* 以慎蘆下三行都是給屬性設值,獲取配置屬性 */
this.strDB = token.nextToken();
this.strUserID = token.nextToken();
this.strUserPWD = token.nextToken();
}
} catch (Exception e) {
System.out.println("DB:"+strFileName);
}
}
}
『陸』 在哪能找到java源代碼
引用:down.china-code.net
引用:down.chinaz.com
引用:www.koders.com
引用:www.javaalmanac.com
引用:www.sourceforge.org
引用:www.apache.org
引用:www.theserverside.com
引用:www.ebaole.com/sourcedown.html
引用:www.javacn.com
『柒』 word文檔轉換為pdf格式,純java實現,需求詳細的源代碼,調用軟體什麼的就不要貼進來了
我曾經也嘗試使用純java技術去解析word文檔,並且使用了apache的jacob,POI等項目,但是由於Microsoft Word使用的doc不是標准DOC文件,而是自己加處理過的,所以現在解析微軟的doc都只能靠破解與猜解,據我所知,現在的技術只能從word中提取出來文字,所以使用純java不太可能實現。
如果使用windows平台的話,可以選擇使用微軟的一些word控制項來達到目的.
『捌』 求耿祥義編著的java程序設計pdf格式或其他格式書籍(源代碼我有了)
Java課程設計兆野渣
【作 者】耿祥義,張躍平編著
【出版發行】 北京市:清華大學出版族悄社 , 2008.11
【ISBN號脊游】978-7-302-18428-7
【頁 數】 323 ; 26cm
【叢書名】21世紀高等學校計算機基礎實用規劃教材
【原書定價】29.5
這本~可製作pdf~
『玖』 求:JavaWEB實現Excel,Word ,PDF 等文檔在線預覽思路和源碼Jar
做OA、文檔管理的,現在都在用PageOffice組件,效果非常好,文檔格式不走樣,不過是收費的。找免費的,可忽略