Properties props = new Properties();
成都創(chuàng)新互聯(lián)客戶idc服務(wù)中心,提供成都天府聯(lián)通服務(wù)器托管、成都服務(wù)器、成都主機(jī)托管、成都雙線服務(wù)器等業(yè)務(wù)的一站式服務(wù)。通過各地的服務(wù)中心,我們向成都用戶提供優(yōu)質(zhì)廉價的產(chǎn)品以及開放、透明、穩(wěn)定、高性價比的服務(wù),資深網(wǎng)絡(luò)工程師在機(jī)房提供7*24小時標(biāo)準(zhǔn)級技術(shù)保障。
Session session = Session.getDefaultInstance(props, null);
Store store = session.getStore("pop3");
store.connect(host, username, password);
Folder folder = store.getFolder("INBOX");
folder.open(Folder.READ_ONLY);
FetchProfile profile = new FetchProfile();
profile.add(UIDFolder.FetchProfileItem.UID);
profile.add(FetchProfile.Item.ENVELOPE);
if (folder instanceof POP3Folder) {
POP3Folder inbox = (POP3Folder) folder;
Message message[] = inbox.getMessages();
System.out.println("Messages's length: " + message.length);
for (int i = 0; i message.length; i++) {
MimeMessage mimeMessage = (MimeMessage) message[i];
String uid = inbox.getUID(mimeMessage);
System.out.println("uid=" + uid);
int UnreadMessageCount = inbox.getUnreadMessageCount();
System.out.println("UnreadMessageCount="+UnreadMessageCount);
int NewMessageCount = inbox.getNewMessageCount();
System.out.println("NewMessageCount="+NewMessageCount);
URLName urlName = inbox.getURLName();
System.out.println("urlName="+urlName);
}
}
}
地址在下面 金山詞霸
迅雷直接下
如果不行 網(wǎng)址
安裝方法
1.購買一個T-Flash卡的讀卡器,T-Flash卡專用讀卡器推薦
2.關(guān)機(jī),取下TF卡把卡裝在讀卡器上與電腦連接,打開:mobile。
3.打開文件:kjava 將你所喜歡的多個JVAV游戲壓縮文件復(fù)制過來,然后解壓全部文件,關(guān)閉窗口。
4.把T-Flash卡卡裝回手機(jī)。打開手機(jī)的游戲和應(yīng)用程序→轉(zhuǎn)存儲卡設(shè)置→選擇卡進(jìn)入安裝新應(yīng)用程序→選擇→安裝→下載→存儲→多個安裝→完成。
補(bǔ)充:我沒有ACCESS,我用的是odbc直接連接mdb文件,你可以用ACCESS同時操作mdb文件.如果要用到ACCESS,請修改bean中的屬性值.
你的東西做的很好
只是數(shù)據(jù)庫連接出了問題
這是我為你的工程寫的一個關(guān)于數(shù)據(jù)庫的bean
提供了一系列的數(shù)據(jù)操作方法
該類已經(jīng)測試成功,只要添加到你的工程里就可以了。希望對你有用。
package lg_cidian;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
/**
* 數(shù)據(jù)庫操作的JavaBean類,用于對數(shù)據(jù)庫的查詢與更新的實(shí)現(xiàn);
* 該類默認(rèn)的連接的數(shù)據(jù)庫為odbc連接本地?cái)?shù)據(jù)文件;
* 該類主要為用戶一系列的數(shù)據(jù)操作提供底層服務(wù).
*
* @version 1.0 2010/06/13
* @author Kiwwor
* @see UserData
*/
public class Access {
//驅(qū)動程序類
private String driver = "sun.jdbc.odbc.JdbcOdbcDriver";
//連接數(shù)據(jù)庫url
private String connectionUrl="jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)}; DBQ=en.mdb";
//用戶名
private String user = "";
//用戶密碼
private String password = "";
//數(shù)據(jù)庫連接對象
private Connection connection = null;
//數(shù)據(jù)庫對象
private Statement statement = null;
//數(shù)據(jù)集對象
private ResultSet resultSet = null;
public String getDriver() {
return driver;
}
public void setDriver(String driver) {
this.driver = driver;
}
public String getConnectionUrl() {
return connectionUrl;
}
public void setConnectionUrl(String connectionUrl) {
this.connectionUrl = connectionUrl;
}
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public Connection getConnection() {
return connection;
}
public void setConnection(Connection connection) {
this.connection = connection;
}
public Statement getStatement() {
return statement;
}
public void setStatement(Statement statement) {
this.statement = statement;
}
public ResultSet getResultSet() {
return resultSet;
}
public void setResultSet(ResultSet resultSet) {
this.resultSet = resultSet;
}
/**
* 獲取一個連接對象,默認(rèn)連接對象本地?cái)?shù)據(jù)庫qq。
* @return 連接是否成功
*/
public boolean createConnection() {
boolean b = false;
try {
Class.forName(driver);
connection = DriverManager.getConnection(connectionUrl, user, password);
b = true;
} catch (Exception e) {
e.printStackTrace();
}
return b;
}
/**
* 更新數(shù)據(jù)庫
* @param sql 更新的sql語句
* @return 更新是否成功
*/
public boolean update(String sql) {
boolean b =false;
try {
statement = connection.createStatement();
statement.execute(sql);
b = true;
} catch (Exception e) {
e.printStackTrace();
}
return b;
}
/**
* 執(zhí)行查詢,將查詢的結(jié)果集給resultmentSet。
* @param sql 查詢的sql語句
*/
public void query(String sql) {
try {
statement = connection.createStatement();
resultSet = statement.executeQuery(sql);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 檢測結(jié)果集是否為空
* @return true為存在記錄
*/
public boolean next() {
boolean b = false;
try {
if (resultSet.next()) b = true;
} catch (Exception e) {
e.printStackTrace();
}
return b;
}
/**
* 獲得結(jié)果集中當(dāng)前行columnLabel的記錄
* @param columnLabel 當(dāng)前行要查詢的列名.
* @return 查詢的列值
*/
public String getValue(String columnLabel) {
String value = null;
try {
if (resultSet != null) value = resultSet.getString(columnLabel);
} catch (Exception e) {
e.printStackTrace();
}
return value;
}
/**
* 獲得結(jié)果集中當(dāng)前行columnIndex的記錄
* @param columnIndex 當(dāng)前行查詢的列索引,第一列為1,第二列為2...
* @return 查詢的列值
*/
public String getValue(int columnIndex) {
String value = null;
try {
if (resultSet != null) value = resultSet.getString(columnIndex);
} catch (Exception e) {
e.printStackTrace();
}
return value;
}
/**
* 關(guān)閉連接對象
*/
public void closeConnection() {
try {
if (connection != null) connection.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
/**
* 關(guān)閉數(shù)據(jù)庫對象
*/
public void closeStatement() {
try {
if (statement != null) statement.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
/**
* 關(guān)閉結(jié)果集
*/
public void closeResultSet() {
try {
if (resultSet != null) resultSet.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
/**
* 關(guān)閉數(shù)據(jù)連接對象,數(shù)據(jù)庫對象和數(shù)據(jù)結(jié)果集對象。
*/
public void closeAll() {
closeResultSet();
closeStatement();
closeConnection();
}
/**
* 測試該類函數(shù)。
* @param args
*/
public static void main(String[] args) {
Access db = new Access();
if (db.createConnection()) {
System.out.println("測試數(shù)據(jù)庫連接成功.");
}
db.closeAll();
}
}
public class Test4 {
static MapString, String map = new TreeMapString, String();
static {
map.put("watermelon", "西瓜");
map.put("banana", "香蕉");
map.put("strawberry", "草莓");
map.put("apple", "蘋果");
}
public static void main(String[] args) {
System.out.println("請輸入單詞");
Scanner sc = new Scanner(System.in);
while (sc.hasNext()) {
String str1 = sc.nextLine();
if(str1.equals("退出")){
return;
}
else if (map.containsKey(str1)) {
System.out.println(map.get(str1));
} else{
System.out.println("次單詞為新詞,添加意思");
Scanner sc1 = new Scanner(System.in);
String str2=sc1.nextLine();
map.put(str1, str2);
System.out.println("添加成功。");
}
}
}
}