當前位置: 首頁>>代碼示例>>Java>>正文


Java FileOutputOutputStream類代碼示例

本文整理匯總了Java中org.embulk.spi.util.FileOutputOutputStream的典型用法代碼示例。如果您正苦於以下問題:Java FileOutputOutputStream類的具體用法?Java FileOutputOutputStream怎麽用?Java FileOutputOutputStream使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


FileOutputOutputStream類屬於org.embulk.spi.util包,在下文中一共展示了FileOutputOutputStream類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: CommonsCompressArchiveProvider

import org.embulk.spi.util.FileOutputOutputStream; //導入依賴的package包/類
CommonsCompressArchiveProvider(PluginTask task, FileOutput fileOutput) {
    this.format = ArchiveFormat.toArchiveFormat(task.getFormat());
    this.underlyingFileOutput = fileOutput;
    this.output = new FileOutputOutputStream(fileOutput, task.getBufferAllocator(), FileOutputOutputStream.CloseMode.FLUSH);
    this.entryNamePrefix = task.getPrefix();
    this.baseNum = baseNumSeq.incrementAndGet();
}
 
開發者ID:hata,項目名稱:embulk-encoder-commons-compress,代碼行數:8,代碼來源:CommonsCompressArchiveProvider.java

示例2: open

import org.embulk.spi.util.FileOutputOutputStream; //導入依賴的package包/類
@Override
public PageOutput open(TaskSource taskSource, final Schema schema, FileOutput output) {
	final PluginTask task = taskSource.loadTask(PluginTask.class);

	final Sheet sheet = newWorkbook(task);

	final FileOutputOutputStream stream = new FileOutputOutputStream(output, task.getBufferAllocator(),
			CloseMode.CLOSE);
	stream.nextFile();

	return new PageOutput() {
		private final PageReader pageReader = new PageReader(schema);

		@Override
		public void add(Page page) {
			pageReader.setPage(page);
			PoiExcelColumnVisitor visitor = new PoiExcelColumnVisitor(task, schema, sheet, pageReader);
			while (pageReader.nextRecord()) {
				schema.visitColumns(visitor);
				visitor.endRecord();
			}
		}

		@Override
		public void finish() {
			Workbook book = sheet.getWorkbook();
			try (FileOutputOutputStream os = stream) {
				book.write(os);
				os.finish();
			} catch (IOException e) {
				throw new RuntimeException(e);
			}
		}

		@Override
		public void close() {
			stream.close();
		}
	};
}
 
開發者ID:hishidama,項目名稱:embulk-formatter-poi_excel,代碼行數:41,代碼來源:PoiExcelFormatterPlugin.java

示例3: CommonsCompressCompressorProvider

import org.embulk.spi.util.FileOutputOutputStream; //導入依賴的package包/類
CommonsCompressCompressorProvider(PluginTask task, FileOutput fileOutput) {
    this.format = CompressorFormat.toCompressorFormat(task.getFormat());
    this.underlyingFileOutput = fileOutput;
    this.output = new FileOutputOutputStream(fileOutput, task.getBufferAllocator(), FileOutputOutputStream.CloseMode.FLUSH);
}
 
開發者ID:hata,項目名稱:embulk-encoder-commons-compress,代碼行數:6,代碼來源:CommonsCompressCompressorProvider.java


注:本文中的org.embulk.spi.util.FileOutputOutputStream類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。