• 大小: 1.03MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-03
  • 语言: Java
  • 标签: SQL数据库  

资源简介

这是我学了一学期的Java的小小成果,主要是简单易懂的,如果适合大家的就看看吧

资源截图

代码片段和文件信息

package my;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

public class AddItemtojl1 {
AddItemtojl1() {

}

void addItemtojl1() {// 查询数据库里的字段并显示到好友列表里
try {
Connection con = MyCon.getCon();
String sql = “select distinct Friend from friend where Icqno=?“;
PreparedStatement prst;
ResultSet res;
String s1 = Login.GetIcqno;// 获取到主人的账号
prst = con.prepareStatement(sql);
prst.setString(1 s1);
res = prst.executeQuery();
if (res != null) {
while (res.next()) {
String s2 = res.getString(1);
System.out.println(s2);
Chat.jl1.addItem(“好友:“ + s2);// 使得用户一登录就能看到自己的好友
}
} else {
System.out.println(“您还没有好友,可以查找好友后添加他(她)!“);
}
con.close();
} catch (SQLException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}

}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        396  2009-12-22 15:43  多人聊天系统\shixun\.classpath

     文件        382  2009-12-21 13:24  多人聊天系统\shixun\.project

     文件       2463  2009-12-25 08:42  多人聊天系统\shixun\bin\example\Chat.class

     文件        100  2009-12-21 14:15  多人聊天系统\shixun\bin\example.Regit1261376142609.html

     文件        100  2009-12-21 14:17  多人聊天系统\shixun\bin\example.Regit1261376273812.html

     文件        100  2009-12-21 14:18  多人聊天系统\shixun\bin\example.Regit1261376296906.html

     文件        100  2009-12-21 14:19  多人聊天系统\shixun\bin\example.Regit1261376341859.html

     文件        141  2009-12-21 14:14  多人聊天系统\shixun\bin\java.policy.applet

     文件       1890  2009-12-25 13:53  多人聊天系统\shixun\bin\my\AddItemtojl1.class

     文件        900  2009-12-25 14:07  多人聊天系统\shixun\bin\my\Chat$1.class

     文件        837  2009-12-25 14:07  多人聊天系统\shixun\bin\my\Chat$1ButtonHandler2.class

     文件       3760  2009-12-25 14:07  多人聊天系统\shixun\bin\my\Chat$1ButtonHandler3.class

     文件       4143  2009-12-25 14:07  多人聊天系统\shixun\bin\my\Chat.class

     文件       2919  2009-12-25 13:44  多人聊天系统\shixun\bin\my\ChatRecord$1ButtonHandler.class

     文件       1955  2009-12-25 13:44  多人聊天系统\shixun\bin\my\ChatRecord.class

     文件       2744  2009-12-25 09:28  多人聊天系统\shixun\bin\my\Find$1ButtonHandler1.class

     文件       2247  2009-12-25 09:28  多人聊天系统\shixun\bin\my\Find$1ButtonHandler2.class

     文件       1902  2009-12-25 09:28  多人聊天系统\shixun\bin\my\Find.class

     文件        954  2009-12-25 13:58  多人聊天系统\shixun\bin\my\Information$1ButtonHandler.class

     文件       2759  2009-12-25 13:58  多人聊天系统\shixun\bin\my\Information.class

     文件       2783  2009-12-25 08:42  多人聊天系统\shixun\bin\my\Login$1ButtonHandler1.class

     文件       2175  2009-12-25 08:42  多人聊天系统\shixun\bin\my\Login.class

     文件       1282  2009-12-25 08:42  多人聊天系统\shixun\bin\my\MyCon.class

     文件        966  2009-12-23 18:03  多人聊天系统\shixun\bin\my\Register.class

     文件       1842  2009-12-25 15:41  多人聊天系统\shixun\bin\my\SearchInformation.class

     文件        828  2009-12-23 18:03  多人聊天系统\shixun\bin\my\Selectsex.class

     文件       2330  2009-12-25 15:05  多人聊天系统\shixun\bin\my\SignOff$1ButtonHandler2.class

     文件       1935  2009-12-25 15:05  多人聊天系统\shixun\bin\my\SignOff$1ButtonHandler3.class

     文件       2487  2009-12-25 15:05  多人聊天系统\shixun\bin\my\SignOff$1Register.class

     文件       4142  2009-12-25 15:05  多人聊天系统\shixun\bin\my\SignOff.class

............此处省略29个文件信息

评论

共有 条评论