How to convert InputStream to String/convert char[] to String

本文介绍了一种将InputStream转换为String的方法。通过使用Reader.read(char[] buffer)方法迭代读取输入流,直到没有更多数据可读。示例代码展示了如何从文件或jar包中读取数据,并将其转换为字符串。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


This example will show you how to convert an InputStream to String. In the code snippet below we read a data.txt file, could be from common folder or from inside a jar file.

package org.kodejava.example.io;

import java.io.IOException;
import java.io.InputStream;
import java.io.StringWriter;
import java.io.Writer;
import java.io.Reader;
import java.io.BufferedReader;
import java.io.InputStreamReader;

public class StreamToString {

    public static void main(String[] args) throws Exception {
        StreamToString sts = new StreamToString();

        /*
         * Get input stream of our data file. This file can be in
         * the root of you application folder or inside a jar file
         * if the program is packed as a jar.
         */
        InputStream is =
                sts.getClass().getResourceAsStream("/data.txt");

        /*
         * Call the method to convert the stream to string
         */
        System.out.println(sts.convertStreamToString(is));
    }

    public String convertStreamToString(InputStream is)
            throws IOException {
        /*
         * To convert the InputStream to String we use the
         * Reader.read(char[] buffer) method. We iterate until the
         * Reader return -1 which means there's no more data to
         * read. We use the StringWriter class to produce the string.
         */
        if (is != null) {
            Writer writer = new StringWriter();

            char[] buffer = new char[1024];
            try {
                Reader reader = new BufferedReader(
                        new InputStreamReader(is, "UTF-8"));
                int n;
                while ((n = reader.read(buffer)) != -1) {
                    writer.write(buffer, 0, n);
                }
            } finally {
                is.close();
            }
            return writer.toString();
        } else {        
            return "";
        }
    }
}

To convert a DOC file to DOCX format using Apache POI library, you can follow these steps: 1. Add the Apache POI dependency to your project. You can do this by adding the necessary JAR files to your project's build path or by using a dependency management tool like Maven or Gradle. 2. Use the following code snippet to perform the conversion: ```java import org.apache.poi.hwpf.HWPFDocument; import org.apache.poi.hwpf.converter.WordToConverter; import org.apache.poi.xwpf.usermodel.XWPFDocument; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.InputStream; import java.io.OutputStream; public class DocToDocxConverter { public static void main(String[] args) { try { // Load the DOC file InputStream inputStream = new FileInputStream("input.doc"); HWPFDocument document = new HWPFDocument(inputStream); // Create an empty output DOCX file OutputStream outputStream = new FileOutputStream("output.docx"); XWPFDocument convertedDocument = new XWPFDocument(); // Convert the DOC file to DOCX format WordToConverter converter = new WordToConverter(convertedDocument); converter.processDocument(document); // Save the converted document to the output file convertedDocument.write(outputStream); // Close the streams outputStream.close(); inputStream.close(); System.out.println("Conversion completed successfully."); } catch (Exception e) { e.printStackTrace(); } } } ``` Make sure to replace "input.doc" with the path to your input DOC file and "output.docx" with the desired path for the output DOCX file. 3. Run the code, and it will convert the DOC file to DOCX format and save it as "output.docx" in the specified location. Please note that this code is based on Apache POI version 5.x, which supports the conversion of DOC to DOCX. If you are using an older version of Apache POI, you might need to use different classes or methods for the conversion.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值