mirror of
https://github.com/Hello-hao/Tbed.git
synced 2026-09-20 03:18:28 +00:00
:fire:修复了一些问题
This commit is contained in:
@@ -10,13 +10,6 @@
|
||||

|
||||

|
||||
|
||||
<h3 align="center">赞助商</h3>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://www.eltyun.com/" target="_blank">
|
||||
<img width="350px" src="https://t.tdo.ink/hellohao/s9ugmihq.png">
|
||||
</a>
|
||||
</p>
|
||||
|
||||
>:exclamation: 托管的所有开源代码可能存在作者修改/测试/调整等行为,均为实验性代码,故并不保证程序或功能的可用性,如果你想要部署程序,请下载我们提供的编译整合包进行安装部署。
|
||||
|
||||
@@ -185,11 +178,7 @@
|
||||
> 仅适用于对接`Core付费版`,开源版暂不可对接使用。
|
||||
> 获取地址:[官网获取](https://www.hellohao.cn/pay)
|
||||
|
||||
|
||||

|
||||
|
||||
[//]: # ""
|
||||
|
||||

|
||||
|
||||
### 运行环境
|
||||
|
||||
@@ -227,8 +216,7 @@ Hellohao图像托管已申请[**中国国家版权局计算机软件著作权**]
|
||||
|
||||
**如果你遇到BUG欢迎反馈**
|
||||
|
||||
- 前往论坛发帖反馈、求助:[Hellohao开发者交流论坛](http://bbs.hellohao.cn)
|
||||
- 也可加QQ群探讨:864800972
|
||||
- Q群探讨:864800972
|
||||
|
||||
### 更多
|
||||
|
||||
|
||||
@@ -46,8 +46,15 @@ public class LocUpdateImg {
|
||||
while ((len = fileInputStream.read(bs)) != -1) {
|
||||
bos.write(bs, 0, len);
|
||||
}
|
||||
bos.flush();
|
||||
bos.close();
|
||||
try {
|
||||
bos.flush();
|
||||
if(bos!=null){
|
||||
bos.close();
|
||||
}
|
||||
if(fileInputStream!=null){
|
||||
fileInputStream.close();
|
||||
}
|
||||
}catch (Exception e){}
|
||||
}
|
||||
returnImage.setCode("200");
|
||||
} catch (Exception e) {
|
||||
|
||||
Reference in New Issue
Block a user