I use pdf.kit to get the title of one pdf file,but can't recognize in chinese jsppage.please help me.A59.pdf is a chinese pdf file.
pdfinfo.jsp:
<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="java.sql.*"%>
<%@ page import="java.lang.*"%>
<%@ page import="com.aspose.pdf.kit.PdfFileInfo"%>
<%
String outFile1 = "http://localhost/"+"A59.pdf";
out.print(outFile1+"<BR>");
String title,create;
PdfFileInfo fileInfo = new PdfFileInfo(outFile1);
title=fileInfo.getTitle();
out.print("TITLE: "+title+"<br>");
%>