String[] cmd = {
"gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/screen -dNOPAUSE -dQUIET -dBATCH -sOutputFile= C:\\Users\\342008\\Desktop\\t\\Pa_10_12.pdf C:\\Users\\342008\\Desktop\\t\\P1_10_12.pdf"
};
try {
Runtime.getRuntime().exec(cmd);
} catch (IOException e) {}
我试图在命令行 argumenet 的帮助下使用 ghost 脚本来减小 PDF 文件的大小,我得到了上述输入字符串对象 cmd 的 IOexception,有人可以帮助运行这个命令来使用 ghostscript 吗?