weixin_42307213 2010-03-19 14:09
浏览 292
已采纳

两台windows 2003服务器之间的通信

请问下 服务器相关的问题:

服务器端由两台主机 A 和 B ,系统都是 Windows2003

A 有个 tomcat 跑程序
B 有个 tomcat 跑网站的一些图片文件

现在要在 A 主机 写文件到 B 主机

有什么办法啊 ?

必须用JAVA语言 用程序实现

不能手动拷贝的

  • 写回答

6条回答 默认 最新

  • xxxxxxxxxxxxxxxxx 2010-03-19 15:33
    关注

    http upload demo:

    [code="java"]import java.io.DataInputStream;
    import java.io.DataOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.net.HttpURLConnection;
    import java.net.MalformedURLException;
    import java.net.URL;

    public class UploadClient {

    public static void main(String[] args)
    throws Exception
    {

    HttpURLConnection conn = null;
    DataOutputStream dos = null;
    DataInputStream inStream = null;

    String exsistingFileName = "/tmp/upload.rar"; //本地文件

    String lineEnd = "\r\n";

    String twoHyphens = "--";
    String boundary = "*****";

    int bytesRead, bytesAvailable, bufferSize;

    byte[] buffer;

    int maxBufferSize = 1*1024*1024;

    String responseFromServer = "";

    String urlString = "http://localhost:8080/upload2/servlet/Upload"; //目标Servlet

    try
    {
    //------------------ CLIENT REQUEST

    FileInputStream fileInputStream = new FileInputStream( new
    File(exsistingFileName) );

    // open a URL connection to the Servlet

    URL url = new URL(urlString);

    // Open a HTTP connection to the URL

    conn = (HttpURLConnection) url.openConnection();

    // Allow Inputs
    conn.setDoInput(true);

    // Allow Outputs
    conn.setDoOutput(true);

    // Don't use a cached copy.
    conn.setUseCaches(false);

    // Use a post method.
    conn.setRequestMethod("POST");

    conn.setRequestProperty("Connection", "Keep-Alive");

    conn.setRequestProperty("Content-Type", "multipart/form-data;boundary="+boundary);

    dos = new DataOutputStream( conn.getOutputStream() );

    dos.writeBytes(twoHyphens + boundary + lineEnd);
    dos.writeBytes("Content-Disposition: form-data; name=\"uploads\";"
    + " filename=\"" + exsistingFileName +"\"" + lineEnd);
    dos.writeBytes(lineEnd);

    // create a buffer of maximum size

    bytesAvailable = fileInputStream.available();
    bufferSize = Math.min(bytesAvailable, maxBufferSize);
    buffer = new byte[bufferSize];

    // read file and write it into form...

    bytesRead = fileInputStream.read(buffer, 0, bufferSize);

    while (bytesRead > 0)
    {
    dos.write(buffer, 0, bufferSize);
    bytesAvailable = fileInputStream.available();
    bufferSize = Math.min(bytesAvailable, maxBufferSize);
    bytesRead = fileInputStream.read(buffer, 0, bufferSize);
    }

    // send multipart form data necesssary after file data...

    dos.writeBytes(lineEnd);
    dos.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd);

    // close streams

    fileInputStream.close();
    dos.flush();
    dos.close();

    }
    catch (MalformedURLException ex)
    {
    System.out.println("From ServletCom CLIENT REQUEST:"+ex);
    }

    catch (IOException ioe)
    {
    System.out.println("From ServletCom CLIENT REQUEST:"+ioe);
    }

    //------------------ read the SERVER RESPONSE

    try
    {
    inStream = new DataInputStream ( conn.getInputStream() );
    String str;
    while (( str = inStream.readLine()) != null)
    {
    System.out.println("Server response is: "+str);
    System.out.println("");
    }
    inStream.close();

    }
    catch (IOException ioex)
    {
    System.out.println("From (ServerResponse): "+ioex);

    }

    }

    }
    [/code]

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(5条)

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog