开发者

Is it possible to compile PDFRender to run on JRE 1.4?

开发者 https://www.devze.com 2023-03-21 20:00 出处:网络
I would like to use a PDF to image conversion API for Java, PDF-Renderer seems to be quite good. As it\'s been written for JRE 1.5 compliance, I get alot of compile errors when I try to compile down t

I would like to use a PDF to image conversion API for Java, PDF-Renderer seems to be quite good. As it's been written for JRE 1.5 compliance, I get alot of compile errors when I try to compile down to 1.4. I have tried tweeking the compiler compatibility options without succe开发者_StackOverflow中文版ss. So, is there a 1.4 compatible build for PDF Renderer ? If not would like to know if there are any other options for a PDF=> image renderer in java that is compatible with JRE 1.4.2+


when you are running javac use command line option -target 1.4. Due to java 1.5 added generics and enum that both are compiler features I believe that javac will succeed to generate 1.4-compatible byte code.

But you will probably have some problems later. For example if PDFERenderer uses java classes from JDK 1.5 that cannot be found in JDK 1.4.... In this case you can try to add them to bootclasspath when you are running your application but I cannot guarantee success because classes may depend on other classes etc...

You can try but I'd personally recommend you to move forward to java 1.6. :)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号