上传后立即在textarea中显示文件内容

时间:2011-12-19 10:10:33

标签: java jquery spring file jsp

我想使用jsp,java spring在我的项目的textarea中显示csv文件的内容。 我正在上传包含用户详细信息的csv文件。上传文件后,我想立即将其内容显示到textarea。

enter image description here 任何代码或如何操作。

P.S。:如果有人可以编辑或改进标签,我真的很感激。

1 个答案:

答案 0 :(得分:0)

你可能想使用jquery和jquery插件uplodify。您将在servlet中回显上传的文件或其他任何内容。然后将“响应”数据推送到你的html元素......

$('#file_upload').uploadify({
  // your configuration...
  'onComplete'  : function(event, ID, fileObj, response, data) {
     $('#yourhtmlelement').html('the contents of the file=' + response);
   }
});