开发者

Bulk upload and Java servlets

What is the best way to upload a CSV fi开发者_如何学Gole through a Java servlet on machine A that gets generated on Machine B?


  1. Compress the file. Compression typically reduces by 90% the size of CSV files.
  2. If allowed, use ftp or sftp. There are many apache libraries to do that.
  3. If ftp not allowed due to security concerns, you might want to use any of the Apache libraries httpclient and httpcore to "POST" the file to your server in B.


If you mean CSV generated on machine B, servlet running on machine A:

  1. process on machine B generates CSV file (or detects it has been generated) then does a http post to push the CSV to the servlet. This can be done in java or any system you like since you're servlet is just expecting HTTP. Here is a Java example. or,
  2. you could mount a common folder so that machine A and machine B can see the file, and the servlet could periodically check for the file. Since you've said "upload" you probably mean option 1.
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜