pdfreader支持那种后缀名文件和如何将后缀名改为*pdf?

bk2898 56 0

pdfreader支持那种后缀名文件和如何将后缀名改为*pdf?

"文件夹和搜索选项"--"查看"---"隐藏已知文件类型的扩展名" 前面的对勾去掉,再看你下载的文件就会显示后缀****

.Pdf

,把Pdf改为Rmvb 前提是你下载的文件确实是RMVB文件,否则改了后缀也 不能播放

NuancePDFReader是什么?能卸载吗?

尊敬的华硕用户,您好。nuance pdf reader是一款PDF阅读软件,支持PDF标注,可进行文档的转换。若您认为无需使用此软件,您可以选择进行卸载,卸载之后所有PDF格式的文档您将无法查看。后续若您需要使用此软件,需重新下载安装。

分享相关内容的知识扩展阅读:

求大神分享一个 adobe Reader XI下载 地址

《Adobe Reader XI v11.0.23 PDF阅读器》百度网盘资源免费下载:

链接: https://pan.baidu.com/s/1P4SwPDp-oedqBphyrNJ5Sg

Adobe Reader v11.0.23来自:百度网盘提取码: qujp复制提取码跳转

?pwd=qujp 提取码: qujp 

Adobe Reader XI v11.0.23简体中文版是一款更好的pdf阅读器,该软件完全免费,功能简单实用,可以打开所有的PDF文档,同时还能与所有PDF文档进行交互,包括查看、搜索、验证和打印Adobe PDF文件,还可以对PDF文件进行数字签名,注释和审阅、复制内容等等,是目前广大网友最喜欢的pdf文件阅读软件。

电脑中的Foxit PDF Reader文件夹一般放在那里

双击 PDF 文件时会自动打开Foxit PDF Reader应用程序,它要我补装字符集。我不知道Foxit PDF Reader文件夹一般放在那里?请您指点一下!
打开注册表 找到 HKEY_LOCAL_MACHINE/SOFTWARE/Foxit Software 就没有了。
*** 很多:
1.最傻瓜做法:在电脑里查找“Foxit Reader.exe”,一般就是
2.最平常做法:如果非绿色安装版(zip版),可以在桌面上找到foxit reader 的图标,右键,属性。里头有。如果是zip版的话,就用傻瓜找法吧
3.最精确找法:打开注册表 HKEY_LOCAL_MACHINE/SOFTWARE/Foxit Software/Foxit Reader,InstallPath键值就是你要的东西。

怎么在服务器端使用Adobe reader 在线阅读PDF文件时候屏蔽掉打印、下载工具栏

import java.io.FileOutputStream;

import com.lowagie.text.Document;
import com.lowagie.text.Font;
import com.lowagie.text.PageSize;
import com.lowagie.text.Paragraph;
import com.lowagie.text.Rectangle;
import com.lowagie.text.pdf.PdfContentByte;
import com.lowagie.text.pdf.PdfCopy;
import com.lowagie.text.pdf.PdfEncryptor;
import com.lowagie.text.pdf.PdfImportedPage;
import com.lowagie.text.pdf.PdfReader;
import com.lowagie.text.pdf.PdfWriter;

publicclass PdfHandle {
publicvoid hideBars(String inputFile,String outFile)
{
//复制一个PDF
try {
// 创建一个reader
PdfReader reader = new PdfReader(inputFile);
int n = reader.getNumberOfPages();
// 得到之一页
Rectangle psize = reader.getPageSize(1);
float width = psize.height();
float height = psize.width();

// step 1: 创建一个document对象
Document document = new Document(new Rectangle(width, height));
// step 2: 创建一个write
PdfCopy writer = new PdfCopy(document, new FileOutputStream(outFile));
//设置隐藏菜单栏和工具栏
writer.setViewerPreferences(PdfWriter.HideMenubar | PdfWriter.HideToolbar);

// step 3: 打开 document
document.open();
// step 4: 一页一页添加内容
int i = 0;
while (i < n) {
document.newPage();
i++;
PdfImportedPage page1 = writer.getImportedPage(reader, i);
writer.addPage(page1);
}

// step 5: 关闭document

document.close();
}
catch (Exception de) {
de.printStackTrace();
}
}
publicvoid notAllowPrint(String inputFile,String outFile)
{
try {
PdfReader reader = new PdfReader(inputFile);
//设置加密权限
PdfEncryptor.encrypt(reader,
new FileOutputStream(outFile),
null,
null,
PdfWriter.AllowAssembly |PdfWriter.AllowFillIn|PdfWriter.AllowScreenReaders,
false);
}
catch(Exception e) {
e.printStackTrace();
}
}
publicstaticvoid main(String args[])
{
PdfHandle pp=new PdfHandle();
pp.hideBars("e://3.pdf", "e://4.pdf");
pp.notAllowPrint("e://4.pdf", "e://5.pdf");
}

}
以上程序测试过没有问题。使用时要加入itext.jar到工程里面。
*** 1.去掉工具栏。这个很简单。
*** 2.屏蔽打印,这个 *** 其实屏蔽了很多权限,可以在文档中查到。Encrypt *** 的第5个参数是受权参数,如果希望用户有什么权限则在这里面定义。如果第三个第四个参数里面定义了密码则用户打开文档就必须输入密码,如果授权为允许打印有定义了密码则不会达到我们单纯屏蔽打印按钮的目的。
权限由如下几种:
AllowPrinting
AllowModifyContents
AllowCopy
AllowModifyAnnotations
AllowFillIn
AllowScreenReaders
AllowAssembly
AllowDegradedPrinting

抱歉,评论功能暂时关闭!