急急急,求问上传图片到服务器怎么写?
要实现这个功能 图片右边有个浏览上传照片 要让照片显示在框中
而且把图片上传到指定文件夹 路径存到数据库
Action里面怎么写啊?
只知道可以把路径从页面传到Action里面来 然后就不知道怎么处理了
存到数据库还好说,怎么把图片存下来到指定文件夹呢!?而且那个图片的预览也不会
求求求! Struts2
[解决办法]
<form method="post" action="http://your_address" enctype="multipart/form-data">
<input type='hidden' id="do" name="do" value="justDoIt"/>
<fieldset>
<label>上传文件:</label><input type='file' id='uploadFile' name="uploadFile" size='35' maxlength='255'><br/>
<fieldset>
<input type='submit' id='submit'/>
<input type='reset' id='reset'/>
</fieldset>
</form>
[解决办法]
楼主图片是用的什么软件??
[解决办法]
图片预览!可以用脚本实现!注意要跨浏览器!
[解决办法]
上传下载方法:
1. 想Server端运行: java 的 FTPClient类 (推荐)
2. 想客户端运行: 可使用vbscript代码写 (适用某些特定环境下)
以上两种都可在网上搜索相关代码参考.
[解决办法]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>get file input full path</title>
<script language='javascript'>
function getFullPath(obj)
{
if(obj)
{
//ie
if (window.navigator.userAgent.indexOf("MSIE")>=1)
{
obj.select();
return document.selection.createRange().text;
}else
{
if(obj.files)
{
return window.URL.createObjectURL(obj.files[0]);
}
return obj.value;
}
return obj.value;
}
}
</script>
</head>
<body>
<input type="file" onchange="document.getElementById('img').src=getFullPath(this);" />
<img id="img" />
</body>
</html>