分享
 
 
 

通过socket访问数据库

王朝other·作者佚名  2008-05-19
窄屏简体版  字體: |||超大  

Tip:通过socket访问数据库,分 Clinet, Display,sqlServer三个类

Client.java

import java.awt.*;

import java.io.*;

import java.net.*;

import java.applet.*;

public class Client extends Applet

{

public TextArea chat_txt;

private TextField sql_txt;

private Button connect,execute;

private Socket soc= null;

private PrintStream ps= null;

Listen listen;

public void init()

{

chat_txt= new TextArea();

sql_txt= new TextField(20);

connect= new Button("Connect");

execute= new Button("Execute");

execute.disable();

Panel pp= new Panel();

pp.setLayout(new FlowLayout());

pp.add(sql_txt);

pp.add(connect);

pp.add(execute);

add("North",pp);

add("Center",chat_txt);

}

public boolean action(Event evt,Object obj)

{

if(evt.target instanceof Button)

{

String label= (String)obj;

if(label.equals("Connect"))

{

try{

soc= new Socket(InetAddress.getLocalHost(),4700);

ps= new PrintStream(soc.getOutputStream());

ps.println("HELLO");

ps.flush();

listen= new Listen(this,soc);

listen.start();

}catch(Exception e)

{

chat_txt.setText(e.toString());

disconnect();

}

connect.setLabel("Disconnect");

execute.enable();

}else if(label.equals("Disconnect"))

disconnect();

else if(label.equals("Execute"))

{

if(sql_txt.getText()!= null)

{

ps.println("FIND");

ps.flush();

ps.println(sql_txt.getText());

ps.flush();

}

}

}

return false;

}

public void disconnect()

{

if(soc!= null)

{

try{

listen.stop();

ps.println("QUIT");

ps.flush();

soc.close();

}catch(Exception e){}

finally{

listen.stop();

listen= null;

soc= null;

}

execute.disable();

connect.setLabel("Disconnect");

}

}

}

class Listen extends Thread

{

Socket socket= null;

DataInputStream dis= null;

Client parent= null;

public Listen(Client p,Socket s)

{

parent= p;

socket= s;

try{

dis= new DataInputStream(socket.getInputStream());

}catch(Exception e){}

}

public void run()

{

String line= null;

while(true)

{

try{

line= dis.readLine();

}catch(Exception e){}

if(line!= null)

parent.chat_txt.appendText(line);

}

}

}

Display.java

/********************************************

格式化输出数据库记录,出自

返回值为格式化的字符串

********************************************/

import java.sql.*;

class Display extends Object

{

ResultSet theResultSet;

String theResult;

public void display()

{}

public void setResult(ResultSet result)

{

theResultSet= result;

}

public String getString()

throws SQLException,NoClassDefFoundError

{

theResult= "";

ResultSetMetaData metaData= theResultSet.getMetaData();

int colcount = metaData.getColumnCount();

int colSize[]= new int[colcount];

String colLabel[]= new String[colcount];

int colType[]= new int[colcount];

String colTName[]= new String[colcount];

int colPrec[]= new int[colcount];

int colScale[]= new int[colcount];

theResult +="\n";

for(int i= 1;i

{

colSize[i-1] = metaData.getColumnDisplaySize(i);

colLabel[i-1]= metaData.getColumnLabel(i);

colType[i-1] = metaData.getColumnType(i);

colTName[i-1]= metaData.getColumnTypeName(i);

colPrec[i-1] = metaData.getPrecision(i);

colScale[i-1]= metaData.getScale(i);

if(colSize[i-1]

colSize[i-1]= 1+colLabel[i-1].length();

theResult+= rightPad(colLabel[i-1],colSize[i-1]);

}

theResult +="\n\n";

int row= 0;

while(theResultSet.next())

{

row++;

for(int i=1;i

{

String colvalue= theResultSet.getString(i);

if(colvalue== null)

colvalue="";

theResult+= rightPad(colvalue,colSize[i-1]);

}

theResult+="\n";

}

theResult+="\n(" +row+ "rows included)\n";

return theResult;

}

private String rightPad(String s,int len)

{

int curlen= s.length();

if(curlenlen)

return repString("*",len);

return (s+repString(" ",(len-curlen)));

}

private String repString(String s,int times)

{

String result="";

for(int i=0;i result+= s;

return result;

}

}

sqlServer.java

import java.awt.*;

import java.sql.*;

import java.io.*;

import java.net.*;

import Display;

public class sqlServer

{

public static void main(String[] args)

{

System.out.println("Waiting for connection");

try{

ServerSocket session= new ServerSocket(4700);

handleRequests handler= null;

System.out.println("Waiting for connection");

while(true)

{

Socket socket= null;

socket= session.accept();

if(socket== null)

continue;

System.out.println("Connection made");

handler= new handleRequests(socket);

handler.start();

}

}catch(Exception e)

{

System.out.println("客户连接失败"+e);

}

}

}

class handleRequests extends Thread

{

private DataInputStream in= null;

private PrintStream out= null;

private Socket socket= null;

Connection theConnection= null;

Statement theStatement= null;

ResultSet theResultSet= null;

Display display= null;

public handleRequests(Socket s)

throws IOException

{

socket= s;

in= new DataInputStream(socket.getInputStream());

out= new PrintStream(socket.getOutputStream());

}

public void openConnection()

{

try{

Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");

if(theConnection!= null)

theConnection.close();

theConnection= DriverManager.getConnection("jdbc:odbc:test","admin","1234");

theStatement= theConnection.createStatement();

display= new Display();

}catch(Exception e)

{

System.out.println(e);

}

}

public void run()

{

openConnection();

try{

String line= null;

while(true)

{

line = in.readLine();

if(line!= null)

line= line.trim();

if(line.equals("FIND"))

{

line = in.readLine();

line= line.trim();

theResultSet= theStatement.executeQuery(line);

display.setResult(theResultSet);

out.print(display.getString());

out.flush();

}

if(line.equals("QUIT"))

break;

if(line.equals("HELLO"))

{

out.println("Welcome to join us");

out.flush();

}

}

in.close();

out.close();

socket.close();

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有