如何通过 java HTTP 请求访问 FDF
我有一个带有提交按钮的 PDF 表单。提交按钮操作设置为将带有内容字段的 FDF 发送到 URL。当访问此 URL 时,将运行一个 java 类。 PDF 中有一个名为 FName 的字段。当我使用 Http Request 对象获取字段 FName 时,返回 null。如何在我的 java 类中访问 FDF 数据。我已将 JFDFTK.jar 文件包含在我的类路径中。
I have a PDF form with a submit button. The submit button action is set up to send the FDF with the content fields to a URL. A java class is run when this URL is accessed. There is a field in the PDF called FName. When I use the Http Request object to get the field FName null is returned. How can I access the FDF data in my java class. I have included the JFDFTK.jar file in my class path.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在 Windows 上进行测试,请尝试使用 Fiddler 之类的工具来跟踪 PDF 和服务器端代码。然后,您应该能够看到该值是否确实按照您的预期从 PDF 发送。
如果您看到正在发送的字段,那么也许可以发布您的 Java 代码,以便我们可以了解您如何处理 HTTP 请求。
If you're testing on Windows, try something like Fiddler to trace the HTTP traffic between your PDF and the server side code. You should then be able to see if the value is actually sent from the PDF as you expect.
If you see the field being sent, then maybe post your Java code so we can see how you're handling the HTTP request.