如何使用JSP将图像上传到DAM

时间:2013-06-19 08:45:55

标签: java jsp file-upload cq5

如何从标准HTML输入上传图像到DAM?我试过去谷歌,但我找不到任何有用的东西。

现在我知道我应该使用AssetManagerAsset类,但我无法找到如何使用这些类将图像上传到DAM。或者我应该使用其他东西吗?

2 个答案:

答案 0 :(得分:2)

使用带有文件输入的标准HTML表单,可以将文件直接上传到DAM中。使用这样的表格:

<!DOCTYPE html>
<html>
<body>
  <form method="post" action="http://localhost:4502/content/dam/geometrixx.createasset.html" enctype="multipart/form-data">
    <input type="hidden" size="20" name="_charset_" value="utf-8">
    <input id="file" name="file" type="file">
    <input type="submit" value="upload">
  </form>
 </body>
</html>

将表单操作中的路径从/content/dam/geometrixx更改为您希望的任何DAM位置。

如果您选择名为my.gif的文件,它将在DAM /content/dam/geometrixx/my.gif

创建资产

它将通过正常的工作流程为您提供各种资产再现。

答案 1 :(得分:0)

http://www.tutorialspoint.com/jsp/jsp_file_uploading.htm

参考此链接。希望它可能有所帮助。