写点什么

如何将 Java 文件转换为 InputStream?这两种方法很管用!

作者:wljslmz
  • 2023-04-25
    江苏
  • 本文字数:2912 字

    阅读完需:约 10 分钟

在 Java 中,我们通常使用流(Stream)来在文件和程序之间传输数据。而在某些情况下,我们需要将一个 Java 文件转换为 InputStream 对象,以便进行操作或传输。



本文将介绍如何将 Java 文件转换为 InputStream 对象,并给出多个实用的例子。

方法一:使用 FileInputStream

最常见的将 Java 文件转换为 InputStream 的方法是使用 FileInputStream 类。该类提供了一些方法来读取文件的内容,并返回 InputStream 对象。


以下是一个示例代码,展示如何使用 FileInputStream 读取文件并返回 InputStream 对象:


import java.io.*;
public class FileToInputStreamExample { public static InputStream fileToInputStream(String filePath) throws IOException { File file = new File(filePath); FileInputStream fileInputStream = new FileInputStream(file); return fileInputStream; }
public static void main(String[] args) { try { InputStream inputStream = fileToInputStream("example.txt"); // do something with inputStream inputStream.close(); } catch (IOException e) { e.printStackTrace(); } }}
复制代码


上述代码中,我们使用 File 类和 FileInputStream 类创建一个 FileInputStream 对象,并返回相应的 InputStream 对象。

方法二:使用 ClassLoader.getResourceAsStream

另一种将文件转换为 InputStream 的方法是使用 ClassLoader.getResourceAsStream 方法。该方法可以从类路径中获取指定的资源,并返回一个 InputStream 对象。


以下是一个示例代码,展示如何使用 ClassLoader.getResourceAsStream 获取文件并返回 InputStream 对象:


import java.io.*;
public class FileToInputStreamExample { public static InputStream fileToInputStream(String filePath) throws IOException { InputStream inputStream = FileToInputStreamExample.class.getClassLoader().getResourceAsStream(filePath); return inputStream; }
public static void main(String[] args) { try { InputStream inputStream = fileToInputStream("example.txt"); // do something with inputStream inputStream.close(); } catch (IOException e) { e.printStackTrace(); } }}
复制代码


上述代码中,我们使用 ClassLoader.getResourceAsStream 来获取文件,并返回相应的 InputStream 对象。

示例

现在,我们来看一些将 Java 文件转换为 InputStream 的实用例子。

示例一:从 URL 获取图片并转换为 InputStream

以下示例代码展示了如何从 URL 获取图片并将其转换为 InputStream 对象:


import java.io.IOException;import java.io.InputStream;import java.net.URL;import java.net.URLConnection;
public class FileToInputStreamExample { public static InputStream urlToInputStream(String url) throws IOException { URLConnection connection = new URL(url).openConnection(); connection.setRequestProperty("User-Agent", "Mozilla/5.0"); connection.connect(); return connection.getInputStream(); }
public static void main(String[] args) { try { InputStream inputStream = urlToInputStream("https://example.com/image.jpg"); // do something with inputStream inputStream.close(); } catch (IOException e) { e.printStackTrace(); } }}
复制代码

示例二:将文件转换为字节数组

以下示例代码展示了如何将文件转换为字节数组:


import java.io.*;
public class FileToInputStreamExample { public static byte[] fileToByteArray(String filePath) throws IOException { File file = new File(filePath); FileInputStream fileInputStream = new FileInputStream(file); byte[] bytes = new byte[(int) file.length()]; fileInputStream.read(bytes); fileInputStream.close(); return bytes; }
public static void main(String[] args) { try { byte[] bytes = fileToByteArray("example.txt"); // do something with bytes } catch (IOException e) { e.printStackTrace(); } }}
复制代码

示例三:从 InputStream 读取文件内容

以下示例代码展示了如何从 InputStream 中读取文件的内容:


import java.io.*;
public class FileToInputStreamExample { public static void readInputStream(InputStream inputStream) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream)); String line = ""; while ((line = reader.readLine()) != null) { System.out.println(line); } reader.close(); }
public static void main(String[] args) { try { InputStream inputStream = fileToInputStream("example.txt"); readInputStream(inputStream); inputStream.close(); } catch (IOException e) { e.printStackTrace(); } }}
复制代码

示例四:使用 JAXB 从 XML 文件获取对象

以下示例代码展示了如何使用 JAXB 从 XML 文件获取对象:


import javax.xml.bind.JAXBContext;import javax.xml.bind.JAXBException;import javax.xml.bind.Unmarshaller;import java.io.*;
public class FileToInputStreamExample { public static Object xmlToObject(String filePath, Class<?> clazz) throws JAXBException, IOException { JAXBContext context = JAXBContext.newInstance(clazz); Unmarshaller unmarshaller = context.createUnmarshaller(); InputStream inputStream = new FileInputStream(filePath); Object object = unmarshaller.unmarshal(new BufferedReader(new InputStreamReader(inputStream))); inputStream.close(); return object; }
public static void main(String[] args) { try { Object object = xmlToObject("example.xml", Example.class); // do something with object } catch (JAXBException | IOException e) { e.printStackTrace(); } }}
复制代码


以上就是几个将 Java 文件转换为 InputStream 的实用例子,其中包括从 URL 获取图片并转换为 InputStream 对象、将文件转换为字节数组、从 InputStream 中读取文件内容和使用 JAXB 从 XML 文件获取对象。通过这些例子,相信您已经掌握了如何将 Java 文件转换为 InputStream 的方法,并且可以在实际开发中使用它们。

发布于: 刚刚阅读数: 5
用户头像

wljslmz

关注

极致主义者,追求技术的路上,勇往直前! 2021-05-24 加入

公众号:网络技术联盟站 👍InfoQ签约作者 👍阿里云社区签约作者 👍华为云 云享专家 👍BOSS直聘 创作王者 👍腾讯课堂创作领航员 博客+论坛:https://www.wljslmz.cn 工程师导航:https://www.wljslmz.com

评论

发布
暂无评论
如何将 Java 文件转换为 InputStream?这两种方法很管用!_三周年连更_wljslmz_InfoQ写作社区