/ / czy mogę zmienić format pliku obrazu na format jpeg w kontrolerze sprężyn - wiosna?

czy mogę zmienić format pliku graficznego na format jpeg w kontrolerze sprężyny - wiosna

 <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 &nbsp;&nbsp;
<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 &nbsp;&nbsp;
<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 &nbsp;&nbsp;
<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 &nbsp;&nbsp;
<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>

Odpowiedzi:

0 dla odpowiedzi № 1

Możesz cath plik w kontrolerze i przekonwertować go. Przykład klasy konwersji:

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();
}
}
}

0 dla odpowiedzi nr 2

String file1 = files.getOriginalFilename().split(".")[0]; //konwertuj dowolny format pliku na .jpg i .mp4... if(fileinsert.getFiletype1().equals("1")||fileinsert.getFiletype1().equals("2")){ plik2 = plik1+.jpg";} else if(fileinsert.getFiletype1().equals("3")){ plik2 = plik1+".mp4"; }jeszcze{} fileinsert.setUploadfilename(file2);