html+css+html5
周鸿明
这个作者很懒,什么都没留下…
展开
-
java读取图片显示
如果是标签中显示import org.apache.commons.io.FileUtils;import org.apache.commons.io.IOUtils;public void attachPic() throws IOException { RequestParams requestParams = createRequestParams(); String filePath = requestParams.getQueryValue("filePath"); String原创 2020-12-29 18:02:58 · 2121 阅读 · 1 评论 -
下载文件时不能显示中文
前段时间做了个下载图片功能,功能做完后本地测试没有任何问题,但是在Linux下却不能显示中文文件名称,纳闷了,经过反复思考,问题得以解决,特此分享,上代码@Action(value = "download") public String download() throws IOException { // 创建Httpclient对象 RequestParams requestParams = createRequestParams(); String file原创 2020-12-29 17:21:22 · 365 阅读 · 0 评论 -
div标签变成可编辑
在html页面有很多得方用到标签,开始的时候要想在一个标签中显示一段文本我会先到用标签,可是标签会随着你的拉动,框的大小也回随着改变,有时会把原来的布局拉动的变得非常难看。有次在看书,看到div是可以编辑的标签,只要在div标签中加上属性contentEditable=true即可,要想看到div就给div高度和宽度再给个颜色,这样就可以在div里编写了。原创 2015-07-03 10:26:32 · 698 阅读 · 0 评论