图片上传代码

client页面上传到上传到服务器并且在服务器保存

xhtml页面

<?xml version="1.0" encoding="UTF-8" ?>
<!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=UTF-8" />
<title>Insert title here</title>
<link rel="stylesheet" type="text/css" href="imageupload.css" />
<script type=‘text/javascript‘ src=‘/Qpid/dwr/engine.js‘></script>
<script type=‘text/javascript‘ src=‘/Qpid/dwr/interface/ProfileBeanMock.js‘></script>
<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script type=‘text/javascript‘ src=‘/Qpid/dwr/util.js‘></script>
<script type="text/javascript">
var byteimage;
function copyText(){
	//alert("dasdas");
	ProfileBeanMock.saveImage(byteimage, callback);
}
function callback(data){
//	alert(data);

		window.opener.location.reload();
		window.close();

}

$(document).ready(function () {
	var fileInput = document.getElementById(‘fileInput‘);
	var fileDisplayArea = document.getElementById(‘fileDisplayArea‘);

	fileInput.addEventListener(‘change‘, function(e) {
		// Put the rest of the demo code here.
		var file = fileInput.files[0];
		var imageType = /image.*/;

		if (file.type.match(imageType)) {
			var reader = new FileReader();

			reader.onload = function(e) {
				fileDisplayArea.innerHTML = "";

				// Create a new image.
				var img = new Image();
				// Set the img src property using the data URL.
				img.src = reader.result;
			 byteimage=reader.result;
				// Add the image to the page.
				fileDisplayArea.appendChild(img);
			}

			reader.readAsDataURL(file);
		} else {
			fileDisplayArea.innerHTML = "File not supported!";
		}
	});
});//$(document)

</script>

</head>
<body>
	<div id="page-wrapper">

		<h1>Image File Reader</h1>
		<div>
			Select an image file: <input type="file" id="fileInput"></input>
          <button onclick="copyText()">Copy Text</button>
		</div>
		<div id="fileDisplayArea"></div>

	</div>
</body>
</html>

  这里用到了dwr框架,主要是异步将图片传入server的javabean中,js不能访问到client机器上图片的真实路径,所以要用到FileReader()这个对象。服务器端的主要功能是将图片的data URL流变成图片然后保存,具体代码:

	public String saveImage(String imagebyteString) {
		String encodingPrefix = "base64,";
		int contentStartIndex = imagebyteString.indexOf(encodingPrefix)
				+ encodingPrefix.length();
		byte[] decodedBytes = DatatypeConverter
				.parseBase64Binary(imagebyteString.substring(contentStartIndex));
		try {
			BufferedImage bfi = ImageIO.read(new ByteArrayInputStream(
					decodedBytes));
			String nameString = UUID.randomUUID().toString() + ".png";
			File outputfile = new File(nameString);
			this.userPhotoUrl = outputfile.getCanonicalPath();
			ImageIO.write(bfi, "png", outputfile);
			bfi.flush();
		} catch (IOException e) {
			e.printStackTrace();
			return "false";
		}
		return "success";
	}

  

图片上传代码

时间: 2024-10-25 15:54:39

图片上传代码的相关文章

jq upload图片上传代码

/* * 图片上传 * */ function postImgData() { $("#addFileInfo input[name='file']").change(function () { console.log($(this).val()) if (!$(this).val()) { return } var fileTyle = $(this).val().split("."); console.log(fileTyle); if (fileTyle[1]

php图片上传代码

<?php // 连接数据库 $conn[email protected]mysql_connect("localhost","root","") or die(mysql_error()); @mysql_select_db('water',$conn) or die(mysql_error()); // 判断action $action = isset($_REQUEST['action'])? $_REQUEST['action']

AppCan做的图片上传代码

存在AppCan里的网页 index.html <!DOCTYPE html> <html class="um landscape min-width-240px min-width-320px min-width-480px min-width-768px min-width-1024px"> <head> <title></title> <meta charset="utf-8"> <

转载图片上传预览 代码

1: <!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="Conte

图片上传根据stream生成image

对于图片上传代码的整合 因为需要判断上传的图片的宽高是否符合尺寸,所以在最初拿到inputstream的时候,就直接获取image格式的图片 本来是想在下面的checkFile中获取的,不过直接使用System.Drawing.Image.FromStream(request.PostedFile.InputStream);的时候报错了,错误意思是说参数为空,应该是由于上面获取byte[]file的时候,关闭了stream,导致request.PostFile.InputStream也没有了,所

php 使用 wangeditor3 图片上传

就在最近,公司让我写一个后台,其中用到了富文本编辑器.自从这个富文本的出现 我就慢慢的进入了一个坑,起初不知道用什么编辑器好,看了好多好多,最后选择了.这个 wangeditor3.个人认为这个富文本很干净,还很多功能. 选择了编辑器 我就慢慢的走进了坑的道理,一步一个坎.接下来就是看代码了. 这个是wangeditor,选择一个自己喜欢的版本.我用的是3的 https://github.com/wangfupeng1988/wangEditor/releases 定义一个富文本编辑器 然后富文

spring mvc 图片上传,图片压缩、跨域解决、 按天生成目录 ,删除,限制为图片代码等相关配置

spring mvc 图片上传,跨域解决 按天生成目录 ,删除,限制为图片代码,等相关配置 fs.root=data/ #fs.root=/home/dev/fs/ #fs.root=D:/fs/ #fs.domains=182=http://172.16.100.182:18080,localhost=http://localhost:8080 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE be

spring mvc 图片上传,图片压缩、跨域解决、 按天生成文件夹 ,删除,限制为图片代码等相关配置

spring mvc 图片上传,跨域解决 按天生成文件夹 ,删除,限制为图片代码,等相关配置 fs.root=data/ #fs.root=/home/dev/fs/ #fs.root=D:/fs/ #fs.domains=182=http://172.16.100.182:18080,localhost=http://localhost:8080 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE b

服务器基于PHP CodeIgniter,Android基于Volley实现多文件/图片上传(含服务器,web版和android客户端完整代码)

问题背景:app在上传图片时,同时传递参数,支持传递多个图片.本文中的环境默认已经配好了服务器的CodeIgniter框架.事实上不使用这个框架也是可以的. 一,服务器部分 1,在controllers下的helpers新建文件upload_helper.php <?php /** * Make multifile array input complaint with CI_Upload.<br> * For use files[ ] input name you must use it