|
JAVA ServerClient的问题,谢谢
[复制链接]
|
|
发表于 4-9-2006 01:07 AM
|
显示全部楼层
原帖由 红发 于 1-9-2006 10:59 PM 发表
问一个问题。
例如我有3个java的file
content.java
Add.java
这两个file都可以分开来跑的。
如果我要content里面link with的add.java的话要如何呢??
if (userChoice == 1) {
AddRecord; < ...
不是很明白你在问什么
是要这个吗?
Add add=new Add(); |
|
|
|
|
|
|
|
楼主 |
发表于 9-9-2006 12:22 AM
|
显示全部楼层
有个问题要问一下
是关于ServerClient的。
- public static void main (String args[]) throws IOException {
- Input in;
- Output out;
- Socket socket;
- try{
- socket = new Socket("localhost", 10000);
- in = new Input (socket.getInputStream());
- out = new Output (socket.getOutputStream());
- } ....
- System.out.print ("Username: ");
- Name = rs.readLine();
- System.out.print ("Password: ");
- Password = rs.readLine();
- tmp = "Name Password"
复制代码
以上的是我的client side 的code
我的问题是如果我要把tmp这个value sent去我的server side那里要如何做呢??
///////////////////////////////////////////////////
- out = new Output (socket.getOutputStream(), true);
复制代码
还有就是如果我在out那里加一个 true的话会有error的哦
Client.java:16: cannot find symbol
symbol : constructor Output(java.io.OutputStream,boolean)
location: class Output
out = new Output (socket.getOutputStream(),true);
^
1 error |
|
|
|
|
|
|
|
楼主 |
发表于 9-9-2006 10:42 PM
|
显示全部楼层
|
|
|
|
|
|
|
发表于 11-9-2006 08:49 AM
|
显示全部楼层
原帖由 红发 于 9-9-2006 12:22 AM 发表
有个问题要问一下
是关于ServerClient的。
public static void main (String args[]) throws IOException {
Input in;
Output out;
Socket socket;
try{
socket = new Socket("l ...
你的Output class 在那里啊?Post 上来让大家看看。 |
|
|
|
|
|
|
| |
本周最热论坛帖子
|