tomcat上传图片
⑴ tomcat上传图片在win2008R2系统下
1. 安装硬盘版PE,比如 通用PE
2. 重启系统进入
通用PE,在C之外的分区建立一个WIN2008目录,使用PE中的ultraiso软件打开你的Win2008安装盘镜像,将里面的文件全部提取到
WIN2008目录内。如果没有ultraiso,可以用vdm虚拟光驱加载这个镜像,然后将里面的文件副知道WIN2008目录。
3. 格式化C盘,然后运行PE中的Win7安装支持。
4. 到解压的WIN2008目录中运行setup,安装开始,重启后安装会继续。
⑵ 图片怎么上传到tomcat服务器,tomcat服务器如何构建
你可以在系统里面做一个上传的功能,然后就能把图片上传到tomcat服务器了啊。
tomcat服务器不用构建。直接下载下来就能用。
⑶ jsp页面显示上传到tomcat服务器的图片
没有显示图片 就是路径不对 你先获取从项目的根目录 然后再获取图片所在路径
这是我取tomcat服务端图片文件夹的方法 用的是servlet
this.getServletContext().getRealPath("uploadFile"); //( "uploadFile" 是放图片的文件夹)
⑷ tomcat本地服务器,上传图片成功后隔天查看图片就不显示啦为什么求解
用的是什么路径?
看看相对路径和绝对路径的区别。
⑸ 怎么向tomcat服务器上传文件
1.将tomcat环境搭配好
path中加入:
%CATALINA_HOME%\lib;%CATALINA_HOME%\bin;
2.修改tomcat中config/server.xml
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true">
<!-- SingleSignOn valve, share authentication between web applications
Documentation at: /docs/config/valve.html -->
<!--
<Valve className="org.apache.catalina.authenticator.SingleSignOn" />
-->
<!-- Access log processes all example.
Documentation at: /docs/config/valve.html
Note: The pattern used is equivalent to using pattern="common" -->
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
prefix="localhost_access_log." suffix=".txt"
pattern="%h %l %u %t "%r" %s %b" resolveHosts="false"/>
<Context docBase="D:\workspace\picture\target\mvc-basic.war" path="/picture"/>
</Host>
添加红色部分
docBase中要为项目打包成的war文件。
path随意
启动tomcat bin\startup.bat,如果这时tomcat一闪而过,表示启动异常,很可能是配置或者server.xml出问题了。
注意:有时即使更改了war文件里面的文件,程序仍然没有任何变化,这个时候要把apache-tomcat-7.0.11\webapps下的项目文件给删除,再重新启动tomcat。
由于我是用eclipse开发的,下面那段红色线表示我发布的位置,wtpwebapps下,我试过,只有把图片放在D:\workspace
\.metadata\.plugins\org.eclipse.wst.server.core\tmp4\wtpwebapps\ROOT里面项目
才能读取到图片。而如果将项目打包成war后,更改<Context docBase="D:\workspace\picture\target\mvc-basic.war" path="/picture"/>更tomcat的根目录是apache-tomcat-7.0.11\webapps,只需要在这个下面建立images目录,把图片往里面存就行了。
3.代码
[java] view plain
private static final String PICTURE_WEB_INF = "/picture/WEB-INF";
private static final String ROOT_IMAGES_PICTURE = "/ROOT/images/picture";
private static final String IMAGES_PICTURE = "/images/picture";
@RequestMapping(value = "/add",method = RequestMethod.POST)
public String save(Picture picture, HttpServletRequest request) {
this.FileAndSaveFile(request, picture);
this.pictureService.save(picture);
return "redirect:/index";
}
private void FileAndSaveFile(HttpServletRequest request, Picture material) {
MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request;
for (Map.Entry<String, MultipartFile> entity : multipartRequest.getFileMap().entrySet()) {
MultipartFile mf = entity.getValue();
String uuid = UUID.randomUUID().toString();
String classPath = this.getClass().getClassLoader().getResource("/").getPath();
try {
classPath =URLDecoder.decode(classPath, "gb2312");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
classPath = classPath.split(PICTURE_WEB_INF)[0];
File pictureFile = new File(classPath+ROOT_IMAGES_PICTURE);
if(!pictureFile.exists()){
pictureFile.mkdirs();
}
String path = pictureFile.getPath();
String ext = null;
try {
if (null == mf || mf.isEmpty() || null == mf.getInputStream() || mf.getSize() > 40000000) {
return;
}
ext = Files.getFileExtension(mf.getOriginalFilename());
if(classPath.indexOf("wtpwebapps")!=-1){
path = classPath+ROOT_IMAGES_PICTURE;
}else{
path = classPath+IMAGES_PICTURE;
}
File f = new File(path +"/" + uuid + "." + ext);
Files.createParentDirs(f);
FileCopyUtils.(mf.getBytes(), f);
material.setFilePath(IMAGES_PICTURE + "/" + uuid + "." + ext);
material.setFileName(mf.getOriginalFilename());
} catch (IOException e) {
e.printStackTrace();
}
}
}
因为使用eclipse开发的,所以会是indexof(wtpwebapps),其他的开发工具要看情况。
jsp:
另外img src好像不支持用绝对路径,显示不出来,我也不知道为什么,网络了很多都没说,但是绝对路径应该是不可行的,因为有时需要移植什么的容易出现问题。
[html] view plain
<head>
<title>图片列表</title>
<script language="javascript" src="./resources/js/jquery-1.8.3.js"> </script>
<script language="javascript" src="./resources/js/jquery.validate.min.js"> </script>
<script language="javascript" src="./resources/js/picture/add.js"> </script>
</head>
<body>
<form action = "<c:url value = "/picture/add"></c:url>" method = "post" id="add_form" enctype="multipart/form-data">
<table class="tab01">
<tr>
<td class="name">名称:</td>
<td><input id = "name" type="text" class="text_input" name="title" placeholder="标题"/></td>
<td><label for="title" class="error" generated="true" style="color:red;font-size:12px;"></label></td>
</tr>
<tr>
<td class="name">上传图片:</td>
<td><input type="file" class="text_input" name="file" id="file" placeholder="上传图片"/></td>
<td><label for="file" class="error" generated="true" style="color:red;font-size:12px;"></label></td>
</tr>
<tr>
<td> </td>
<td colspan="2">
<input type="submit" class="button" id="submitButton" value="提交" name="reset" />
<input type="reset" class="button" value="重置" name="reset" />
</td>
</tr>
</table>
</form>
<br/><br/><br/>
<c:forEach items = "${pictureList }" var = "picture">
<p>${picture.title }</p>
<div><img src="${picture.filePath }" width = "500" height = "500" BORDER="0" ALT="无图片"/>
</div>
</c:forEach>
</body>
[javascript] view plain
$(function(){
jQuery.validator.messages.required = "<span class='error' generated='true' style='color: red; font-size: 12px;'>*请填写此内容</span>";
jQuery.validator.messages.maxlength = "<span class='error' generated='true' style='color: red; font-size: 12px;'>*已达到最大字符数 </span>";
jQuery.validator.messages.accept = "<span class='error' generated='true' style='color: red; font-size: 12px;'>*请输入拥有合法后缀名的字符串 </span>";
$("#add_form").validate({
rules : {
title : {required : true, maxlength :200 },
file : {required : true}
}
});
$("input[type='file']").change(function(){
alert(this.files[0].size);
if(this.files[0].size>300*1024){
alert("图片太大!!图片不大于300KB");
$("#submitButton").attr("disabled","disabled");
}else{
$("#submitButton").removeAttr("disabled");
}
});
$("#add_form").submit(function() {
var filepath=$("input[name='file']").val();
var extStart=filepath.lastIndexOf(".");
var ext=filepath.substring(extStart,filepath.length).toUpperCase();
if(ext!=".BMP"&&ext!=".PNG"&&ext!=".GIF"&&ext!=".JPG"&&ext!=".JPEG"){
alert("图片限于bmp,png,gif,jpeg,jpg格式");
return false;
}
return true;
});
});
⑹ 您好,请问如何在网页中实现简单文件/图片上传,如下图示(在tomcat7.0或8.0环境下)谢谢!解决加倍悬赏
html里这么定义一个form
<formmethod="post"id="uploadForm"name="uploadForm"enctype="multipart/form-data"target="ifm">
<inputtype="file"name="file"id="file"size="30"/><br/><br/>
<ahref="javascript:upload_xls();">上传</a>
</form>
<iframeid='ifm'name='ifm'style="display:none"/>
java
//申明一个File对象
privateFilefile;
publicFilegetFile(){
returnfile;
}
publicvoidsetFile(Filefile){
this.file=file;
}
//
InputStreamis=newFileInputStream(getFile());
//创建输出流,生成新文件
OutputStreamos=newFileOutputStream(这里写文件要保存的路径和文件名);
//将InputStream里的byte拷贝到OutputStream
IOUtils.(is,os);
os.flush();
IOUtils.closeQuietly(os);
主要代码就是上面,可以整合到自己的程序里去
⑺ tomcat本地服务器,上传图片成功后隔天查看图片就不显示啦为什么求解
看看你有没有修改IIS默认上传文件大小限制200K,如果没有的话那图片超过200K,IIS会不容许你上传
⑻ 关于图片上传到tomcat问题
关于图片无法显示,你可以参考下如下网上的论述:
后来才发现,前文所说的方法未不行, 原来tomcat 很死板,对大小写都敏感, 例如我的图片是 1. GIF, 在jsp 里写成了小写的 1. gif 都会显示不出来! 把图片名改成 与文件名一样的就好了。 这点IE就做得比较好,即使小写都可以显示
⑼ 关于用MyEclipse自带的Tomcat服务器实现图片文件上传与图片文件显示的功能
支持 LichKinky 的答案
MyEclipse自带的Tomcat服务器的运行目录为:
E:\MyEclipseWorkspace\.metadata\.plugins\com.genuitec.eclipse.easie.tomcat.myeclipse\tomcat\webapps
你可以在上传图片后 进入这个目录里查看你项目下的upload文件夹
⑽ 为什么我用流的方式上传图片到tomcat服务器中,代码不出错,但是图片没有显示在工程下的文件夹中
1.
while(len=input.read(bt)>0){
output.write(bt,0,len);
}
output.close();
input.close();
returnmapping.findForward("ok");
2.
FileOutputStreamout=newFileOutputStream("F:\yd\TestUpLoad\photo\"+filename);
这个你根本没写文件的名字啊,当然为了防止重名,你应该修改这个filename自动生成不容易重名的文件名,如:根据日期生成,随机数等等。。还有你这个路径写的对不对