我是靠谱客的博主 失眠绿草,最近开发中收集的这篇文章主要介绍java中boolean开关_java中boolean用法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

回答:

我最近也在学:仅有的一点资料

import java.io.*;

import java.util.*;

import org.apache.poi.poifs.filesystem.*;

import org.apache.poi.util.LittleEndian;

public class WordTest {

public WordTest() {

}

public static boolean writeWordFile(String path, String content) {

boolean w = false;

try {

// byte b[] = content.getBytes( "ISO-8859-1 ");

byte b[] = content.getBytes();

ByteArrayInputStream bAIs = new ByteArrayInputStream(b);

POIFSFileSystem fs = new POIFSFileSystem();

DirectoryEntry directory = fs.getRoot();

DocumentEntry de = directory.createDocument( "WordDocument ", bAIs);

FileOutputStream ostream = new FileOutputStream(path);

fs.writeFilesystem(ostream);

bAIs.close();

ostream.close();

} catch (IOException e) {

e.PRintStackTrace();

}

return w;

}

public static void mAIn(String[] args){

boolean b = writeWordFile( "E://test.doc ", "hello ");

}

}

/*

public String extractText(InputStream in) throws IOException {

ArrayList text = new ArrayList();

POIFSFileSystem fsys = new POIFSFileSystem(in);

DocumentEntry headerProPS = (DocumentEntry) fsys.getRoot().getEntry( "WordDocument ");

DocumentInputStream din = fsys.createDocumentInputStream( "WordDocument ");

byte[] header = new byte[headerProPS.getSize()];

din.read(header);

din.close();

// Prende le inFormazioni dall 'header del documento

int info = LittleEndian.getShort(header, 0xa);

boolean useTable1 = (info & 0x200) != 0;

//boolean useTable1 = true;

// Prende inFormazioni dalla piece table

int complexOffset = LittleEndian.getInt(header, 0x1a2);

//int complexOffset = LittleEndian.getInt(header);

String tableName = null;

if (useTable1) {

tableName = "1Table ";

} else {

tableName = "0Table ";

}

DocumentEntry table = (DocumentEntry) fsys.getRoot().getEntry(tableName);

byte[] tableStream = new byte[table.getSize()];

din = fsys.createDocumentInputStream(tableName);

din.read(tableStream);

din.close();

din = null;

fsys = null;

table = null;

headerProPS = null;

int multiple = findText(tableStream, complexOffset, text);

最后

以上就是失眠绿草为你收集整理的java中boolean开关_java中boolean用法的全部内容,希望文章能够帮你解决java中boolean开关_java中boolean用法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部