java客户端如何向服务器txt文件写入信息
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java客户端如何向服务器txt文件写入信息相关的知识,希望对你有一定的参考价值。
客户端要向服务器txt文件写入信息,必须得调用服务器端得java方法,io读写txt文件。客户端用异步调用效果更好,客户端异步传递要写入得信息到服务器上,由服务器上得方法执行写入 参考技术A 用到两方面的东西。。一是读写文件的IO操作。
二是网络连接的socket操作。
客户端打开一个socket套接字连接到服务器,将文本传输过去。
然后服务器接收文本信息,写入文件
分别百度 java io跟java socket可以找到具体如何实现。
不难,但是比较繁琐。本回答被提问者和网友采纳 参考技术B import java.io.*;
import java.util.*;
public class TestPrintWriter
public static void main(String[] args)throws IOException
File file=new File("temp2.txt");
if(file.exists())
System.out.println("File temp.txt already exists.");
System.exit(0);
PrintWriter output=new PrintWriter(new FileWriter(file));
for(int i=0;i<10;i++)
output.print((int)(Math.random()*100)+" ");
output.close();
BufferedReader input=new BufferedReader(new FileReader("temp2.txt"));
int total=0;
String line;
while((line=input.readLine())!=null)
StringTokenizer tokens=new StringTokenizer(line);
while(tokens.hasMoreTokens())
total+=Integer.parseInt(tokens.nextToken());
output=new PrintWriter(new FileWriter(file,true));
output.printf("\n\n");
output.printf("Total is %d ",total);
output.close();
运行后,temp2.txt的内容:
85 10 92 59 71 87 2 95 31 73
Total is 605 参考技术C 读写信息用输入输出流来实现,然后就是客户端和服务器端的连接问题。客户端与服务器端定义一个共同的端口。从而建立连接,然后执行方法write和read来进行读写。
java如何追加写入txt文件
java追加写入txt文件代码及注释参考如下:
public void m()FileWriter ff= null;
try
//查看C盘是否有a.txt文件来判定是否创建
File f=new File("c:\\\\a.txt");
ff = new FileWriter(f, true);//将字节写入文件末尾处,相当于追加信息。
catch (IOException e)
e.printStackTrace();
PrintWriter p = new PrintWriter(ff);
p.println("这里就可以写入要追加的内容了");//此处为追加内容
p.flush();
ff.try
f.flush();
p.close();
ff.close();
catch (IOException e)
e.printStackTrace();
参考技术A public static void method3(String fileName, String content)
try
// 打开一个随机访问文件流,按读写方式
RandomAccessFile randomFile = new RandomAccessFile(fileName, "rw");
// 文件长度,字节数
long fileLength = randomFile.length();
// 将写文件指针移到文件尾。
randomFile.seek(fileLength);
randomFile.writeBytes(content+"\r\n");
randomFile.close();
catch (IOException e)
e.printStackTrace();
以上是关于java客户端如何向服务器txt文件写入信息的主要内容,如果未能解决你的问题,请参考以下文章