<form name="myForm1" method="post" enctype="multipart/form-data" action="singlesave1">
<div id="tab2" style ="width: 860px; height: 140px; float: left; margin-top: 25px;margin-left: 140px;">
<label class="Date1">Product Name
<input id="product_name" style="width: 210px;margin-left: 50px; height: 30px;" type="text" name="productname" required value="">
<input type="submit" value="Insert" onclick="upload1();" style=" width:100px;margin-left: 163px;margin-top: 15px;" >
</div> </form> --%>
<form name="myForm" method="post" enctype="multipart/form-data" action="singlesave">
<div id="table3" style ="width: 860px; height: 320px; float: left; margin-top: 25px;margin-left:140px;">
<h2 align="center"><u><b>Product File Upload</b></u></h2>
<label class="Date1">Product Name
<form:select path="ProductNameList" id="product_name1" name="productname1" style="width: 250px; margin-left: 50px; height: 30px;">
<option value="" label="--- Select Product Name ---" />
<c:forEach var="ProductNameList" items="${ProductNameList}" varStatus="loop">
<option value="${ProductNameList.productcode}">${ProductNameList.productName}</option>
</c:forEach>
</form:select></label>
<label class="Date2">File Type
<form:select path="FiletypeList" id="file_type1" name="filetype1" style="width: 250px; margin-left: 84px; height: 30px;">
<option value="" label="--- Select File Type ---" />
<c:forEach var="FiletypeList" items="${FiletypeList}" varStatus="loop">
<option value="${FiletypeList.id}">${FiletypeList.filetype}</option>
</c:forEach>
</form:select></label>
<label class="Date3">Select File
<input type="file" id="up_file" name="files" size="40" style= "padding-right: 15px;margin-top:-32px;margin-left:164px;" ></label>
<input type="submit" value="Upload" onclick="return upload2();" style=" width:94px;margin-left: 378px;margin-top: 10px;">
</div>
</form>
答案 0 :(得分:0)
您可以在控制器中进行cath文件转换。 convertion类的示例:
package com.mkyong;
import java.awt.Color;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
public class ConvertImageFile {
public static void main(String[] args) {
BufferedImage bufferedImage;
try {
//read image file
bufferedImage = ImageIO.read(new File("img.png"));
// create a blank, RGB, same width and height, and a white background
BufferedImage newBufferedImage = new BufferedImage(bufferedImage.getWidth(),
bufferedImage.getHeight(), BufferedImage.TYPE_INT_RGB);
newBufferedImage.createGraphics()
.drawImage(bufferedImage, 0, 0, Color.WHITE, null);
// write to jpeg file
ImageIO.write(newBufferedImage, "jpg", new File("img.jpg"));
} catch (IOException e) {
e.printStackTrace();
}
}
}
答案 1 :(得分:0)
String file1 = files.getOriginalFilename()。split(&#34; \。&#34;)[0]; //将任何类型的文件格式转换为.jpg和.mp4 ... 如果(fileinsert.getFiletype1()等于(&#34; 1&#34)|| fileinsert.getFiletype1()等于(&#34; 2&#34)){ file2 = file1 +&#34; .jpg&#34 ;;} else if(fileinsert.getFiletype1()。equals(&#34; 3&#34;)){ file2 = file1 +&#34; .mp4&#34 ;; }其他{} fileinsert.setUploadfilename(文件2);