- 浏览: 23460 次
- 性别:
- 来自: 深圳
最新评论
文章列表
关键字: java http 下载 多线程
下载工具我想没有几个人不会用的吧,前段时间比较无聊,花了点时间用java写了个简单的http多线程下载程序,纯粹是无聊才写的,只实现了几个简单的
功能,而且也没写界面,今天正好也是一个无聊日,就拿来写篇文章,班门弄斧一下,觉得好给个掌声,不好也不要喷,谢谢!
我实现的这个http下载工具功能很简单,就是一个多线程以及一个断点恢复,当然下载是必不可少的。那么大概先整理一下要做的事情:
1、 连接资源服务器,获取资源信息,创建文件
2、 切分资源,多 ...
在tomcat 的 server.xml 中配置虚拟路径。
假如你的工程名为 news,上传后的目录为 d:/upload
在 server.xml 中加上一行:
<Context path="/news/upload" docBase="d:/upload" />
以后就可以使用 http://localhost:8080/news/upload/20091111/xxx.doc 访问了。
(1) jsp 页面中的radio部分:
<div class="left">
软件类型:
</div>
<div class="right">
...
STRUTS2 上传文件总是返回 'input' 可能原因:(1) 文件大小超过研制 可以在struts2配置文件中添加: <!-- 定义上传时的文件大小 --> <constant name="struts.multipart.maxSize" value="31457280" />(2) 没有经过struts2的拦截器 可以在struts中显示指明拦截器 <action name="upload" class="softAction" metho ...
禁止选择
unselectable="on"(off): IE/Opera
style="-moz-user-select:none": FireFox(JS:element.style.MozUserSelect = "none";)
style="-khtml-user-select:none": Safari(JS:element.style.KhtmlUserSelect)
onselectstart="return false": IE
取消 ...
In some respects, the Spring container's role in regard to a
prototype-scoped bean is a replacement for the Java new
operator. All lifecycle management past that point must be handled by the
client.
Spring 容器对prototype 作用域的bean 是交给用户自己管理的。
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://ww ...