原创 

java 上传本地文件并且读取返回结果代码

分类:代码片段    304人阅读    IT小君  2023-03-10 11:25

此结果来自ChatGPT在线:https://yy123.ink/chatgpt

```
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;

public class FileUpload {

public static void main(String[] args) {
String url = "http://example.com/upload";
String filePath = "C:/path/to/file.txt";

try {
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();
connection.setRequestMethod("POST");
connection.setDoOutput(true);

File file = new File(filePath);

OutputStream outputStream = connection.getOutputStream();
outputStream.write(file.getBytes());
outputStream.flush();
outputStream.close();

BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String response = reader.readLine();
reader.close();

System.out.println(response);
} catch (IOException e) {
e.printStackTrace();
}
}
}
```

HTML5 Canvas竖直流动线条背景动画特效

响应式太阳能能源公司网站模板

html5 canvas进度条圆环图表统计动画特效

HTML5现代家居装潢公司网站模板

js+css3抽奖转盘旋转点餐代码

html5图标下拉搜索框自动匹配代码

css鼠标跟随文字模糊特效

现代时尚家具公司网站模板

响应式时尚单品在线商城网站模板

css+js实现的颜色渐变数字时钟动画特效

小众时尚单品在线电子商务网站模板

响应式咖啡饮品宣传网站模板

html5 svg夜空中星星流星动画场景特效

jQuery右端悬浮带返回顶部特效

html5 canvas彩色碎片组合球形旋转动画特效

HTML5数字产品服务公司网站模板

有机水果蔬菜HTML5网站模板

canvas炫酷鼠标移动文字粒子特效

网页设计开发公司网站模板

中小型创意设计服务公司网站模板

 工具推荐 更多»