简体   繁体   English

编译基本java项目

[英]Compiling basic java project

I want to compile a basic java project, https://sourceforge.net/projects/pdfformfiller2 its installation instructions are quite short:我想编译一个基本的java项目, https://sourceforge.net/projects/pdfformfiller2它的安装说明很短:

Make sure that iText library, itext-xtra-5.x.0.jar and itextpdf-5.x.0.jar, are accessible to JAVA, eg these are placed in the "lib" subfolder of the current folder.确保iText 库,itext-xtra-5.x.0.jar 和itextpdf-5.x.0.jar,可以被JAVA 访问,例如,它们被放置在当前文件夹的“lib”子文件夹中。

Get latest ones from: https://sourceforge.net/projects/itext/files/iText/从以下位置获取最新的: https : //sourceforge.net/projects/itext/files/iText/

Compile PdfFormFiller.java编译 PdfFormFiller.java

Then from the command line you give command (to see usage help):然后从命令行你给出命令(查看使用帮助):

java -jar pdfformfiller.jar java -jar pdfformfiller.jar

I never compiled jars before, and I'm having hard time trying to compile PdfFormFiller correctly.我以前从未编译过 jar,而且我很难正确编译 PdfFormFiller。 Here's where I've get:这是我得到的地方:

wget -O pdfformfiller.zip https://sourceforge.net/projects/pdfformfiller2/files/latest/download
# author mentions 5.2.0, which is not available anymore, so we go for the latest 5.x:
wget http://kent.dl.sourceforge.net/project/itext/5.5.10/itext5-5.5.10.zip
unzip pdfformfiller.zip
unzip itext5-5.5.10.zip -d pdfformfiller/lib

cd pdfformfiller
javac -cp "lib/*" PdfFormFiller.java

mkdir META-INF
echo -e 'Manifest-Version: 1.0\nClass-Path: pdfformfiller.jar\nMain-Class: PdfFormFiller' > META-INF/MANIFEST.MF
jar -cvfm pdfformfiller.jar META-INF/MANIFEST.MF lib PdfFormFiller.class

Which succeeds without an error, but still doesn't run:哪个成功而没有错误,但仍然没有运行:

$ java -jar pdfformfiller.jar
Error: Could not find or load main class PdfFormFiller

I guess I'm missing something trivial?我想我错过了一些微不足道的东西?

Edit编辑

Complete automation:完全自动化:

iText5=5.5.10

wget -O pdfformfiller.zip https://sourceforge.net/projects/pdfformfiller2/files/latest/download
wget http://kent.dl.sourceforge.net/project/itext/${iText5}/itext5-${iText5}.zip
unzip pdfformfiller.zip
unzip itext5-${iText5}.zip -d pdfformfiller/lib

cd pdfformfiller
mkdir classes
javac -cp "lib/*" -d ./classes/ PdfFormFiller.java

mkdir META-INF
echo 'Manifest-Version: 1.0'                                                                                   > META-INF/MANIFEST.MF
echo "Class-Path: ./lib/itextpdf-${iText5}.jar ./lib/itext-xtra-${iText5}.jar ./lib/itext-pdfa-${iText5}.jar" >> META-INF/MANIFEST.MF
echo 'Main-Class: PdfFormFiller.PdfFormFiller'                                                                >> META-INF/MANIFEST.MF

jar -cvfm pdfformfiller.jar ./META-INF/MANIFEST.MF ./lib -C ./classes/ PdfFormFiller

Edit 2编辑 2

It seems to be the only way to fill pdf form from CLI reliably:这似乎是从 CLI 可靠地填写 pdf 表单的唯一方法:

# list fields in a file:
$ java -jar pdfformfiller.jar input.pdf -l
myfield

# prepare field data:
$ echo 'myfield αβγ' > fields

# specify font, fill the fields, flatten the form:
$ java -jar pdfformfiller.jar input.pdf -f fields -font Times_New_Roman.ttf -flatten output.pdf

Works like a charm!像魅力一样工作!

Here are the steps I followed to get it working.以下是我为使其工作而遵循的步骤。

  1. First of all, just for the sake of clarity, let's create a dedicated folder for your compiled classes.首先,为了清楚起见,让我们为您编译的类创建一个专用文件夹。 It's not mandatory, but just an example of good development practice.这不是强制性的,只是良好开发实践的一个例子。 I'm omitting the steps of creating folders, changing dirs etc. because it's quite obvious.我省略了创建文件夹、更改目录等步骤,因为这很明显。 All commands are run from the project's root directory所有命令都从项目的根目录运行

    javac -cp "lib/*" -d ./classes/ PdfFormFiller.java
  2. Fixing the two main things that were missed:修复遗漏的两个主要事情:

    a) the reference for required lib folder and a) 所需lib文件夹的参考和

    b) package name: b) 包名:

     echo -e 'Manifest-Version: 1.0\\nClass-Path: ./lib/itextpdf-5.5.4.jar ./lib/itext-xtra-5.5.4.jar ./lib/itext-pdfa-5.5.4.jar\\nMain-Class: PdfFormFiller.PdfFormFiller' > META-INF/MANIFEST.MF
  3. Assembling jar (please note that additional option: -C is being used here):组装 jar(请注意这里使用了附加选项:-C):

     jar -cvfm pdfformfiller.jar ./META-INF/MANIFEST.MF ./lib -C ./classes/ PdfFormFiller
  4. This is the final output from executing the resulting jar file:这是执行生成的 jar 文件的最终输出:

     $ java -jar pdfformfiller.jar USAGE: pdfformfiller document.pdf [ -l ] [ -v ] [ -f fields_filename ] [ -font font_file ] [ -flatten] [ output.pdf ] document.pdf - name of source pdf file (required). -l - only list available fields in document.pdf. -v - verbose. Use to debug the fields_filename file. -f fields_filename - name of file with the list of fields values to apply to document.pdf. if ommited, stdin is used. -font font_file - font to use. Needed UTF-8 support, eg cyrillic and non-latin alphabets. -flatten - Flatten pdf forms (convert them to text disabling editing in PDF Reader). output.pdf - name of output file. If omitted, the output if sent to stdout. fields_filename file can be in UTF-8 as is of the following format: On each line, one entry consists of 'field name' followed by value of that field without any quotes. Any number of whitespaces allowed before 'field name', and one space separates 'field name' and its value. In value, newline characters should be encoded as "\\n", 'U+2029 utf-8 E280A9 : PARAGRAPH SEPARATOR PS' should be encoded as "\\p", and '\\' characters should be escaped as "\\\\". For checkboxes, values are 'Yes'/'Off'. Based on the Belgian iText library v. 5.2.0, http://www.itextpdf.com/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM