JAVA 创建一个空文本文档

JAVA 创建一个空文本文档,第1张

import java.io.*

 

public class Test{

  public static void main(String[] args) throws Exception 信源山{

    File f = new File("裂拿E:/hello.txt")

    OutputStream os= 滑中new FileOutputStream(f)

  }

}

已测可用,有帮助的话给个采纳谢谢。

竟然说我疑似复制

来,好好看看。

垃圾百毒

package com.yiibaiimport java.io.IOExceptionimport org.apache.pdfbox.pdmodel.PDDocumentimport org.apache.pdfbox.pdmodel.PDPage// 需要下 apache pdfbox包和apache.commons.loggin乌,下载地址:http://pdfbox.apache.org/download.cgi 和 http://commons.apache.org/proper/commons-logging/download_logging.cgi// 在本示例中下载使用的是:pdfbox-2.0.7.jar /高肢/ 将下载的pdfbox-2.0.7.jar添加到Eclipse项目依懒库中。// 右键点击:"java_apache_pdf_box"->"Bulid Path"->"Add External Artchives...",戚雹世然后选笃下载肆顷的"pdfbox-2.0.7.jar"和"commons-logging-1.2.jar"文件 public class CreatingEmptyPdf {

public static void main(String args[]) throws IOException {

// Creating PDF document object

PDDocument document = new PDDocument()

// Add an empty page to it

document.addPage(new PDPage())

// Saving the document

document.save("F:/worksp/javaexamples/java_apache_pdf_box/BlankPdf.pdf")

System.out.println("PDF created")

// Closing the document

document.close()

}}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/8166123.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-14
下一篇 2023-04-14

发表评论

登录后才能评论

评论列表(0条)

保存