标题:jsp中的通信
取消只看楼主
chenjiang001
Rank: 1
等 级:新手上路
帖 子:133
专家分:0
注 册:2006-3-21
 问题点数:0 回复次数:1 
jsp中的通信

<html>
<head>
<title>map</title>
</head>
<body>
<%
String getvalue;
getvalue=request.getParameter("select");
这块怎样用java下面的类实现发送字符串getvalue?
不知道这块怎么写?

%>

</body>
</html>

import java.io.*;
import java.net.*;

public class Client
{
public void SendData()
{
Socket clientSock=null;
try
{
clientSock=new Socket("127.0.0.1",10000);

if(clientSock!=null)
{
out.println("now,the state is connected!");
}

PrintWriter sockOutput= new PrintWriter(clientSock.getOutputStream());

sockOutput.println(getvalue);
sockOutput.flush();
}
catch(Exception e)
{
e.getStackTrace();
}
}

public static void main(String args[])
{
Client c=new Client();
c.SendData();
}
}

搜索更多相关主题的帖子: jsp 通信 
2007-04-23 12:15
chenjiang001
Rank: 1
等 级:新手上路
帖 子:133
专家分:0
注 册:2006-3-21
得分:0 
这方面的东西实在不会
请教各位

2007-04-23 17:50



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-134190-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.215646 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved