How does Java obtain the object content type? For example: image/gif, javaimage

Source: Internet
Author: User

How does Java obtain the object content type? For example: image/gif, javaimage
After a website uploads a file, if it is an image, it must process the file, compress, scale, and so on.
Import java. nio. file .*;

// If it is an image file, perform the scaling process Path source = Paths. get (newFilePath); String contentType = Files. probeContentType (source); if (contentType. startsWith ("image") {String thumbPath = this. getImgAbsolutePath (request, "thumb"); ImageUtils. resize (maid, thumbPath, 94,222, true );}





In java, how does one store an image-format object into a specific file?

ObjectOutPutStream is not necessarily related to "saving to actual files.
Only ObjectOutPutStream links a File... can be used to "save to the actual File"


How to pass parameters to the Image data type in Java

Upload an Image object
You can obtain Image objects in the following ways:
Image img = Toolkit. getDefaultToolkit. createImage (String filename );
Image img = Toolkit. getDefaultToolkit. createImage (URL url );
Image img = ImageIO. read (File file );
Image img = ImageIO. read (URL url );

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.