2012年4月11日

【转】PDF文档的乱码问题

摘要: PDF文档的乱码问题[编辑]文档查看器(Evince)打开中文PDF显示方块的问题使用Evince打开部分pdf文件,特别是中国知网上下载的pdf论文时,常常显示为方块。evince,okular, epdfview的pdf功能均由xpdf的分支poppler提供。poppler官方网站:http://poppler.freedesktop.org必须先安装poppler-datasudo apt-get install poppler-data如果已经安装了文泉驿正黑字体,使用下面的方法解决显示方块问题:sudo gedit /etc/fonts/conf.d/49-sansserif.c. 阅读全文

posted @ 2012-04-11 17:13 fuxy 阅读(549) 评论(0) 推荐(0)

android分享到代码

摘要: 其实是调用系统的一个分享功能,可以将文本信息传送到其它程序里。Intent intent=new Intent(Intent.ACTION_SEND);intent.setType("text/plain"); //分享的数据类型intent.putExtra(Intent.EXTRA_SUBJECT, "subject"); //主题intent.putExtra(Intent.EXTRA_TEXT, "content"); //内容startActivity(Intent.createChooser(intent, "t 阅读全文

posted @ 2012-04-11 16:25 fuxy 阅读(187) 评论(0) 推荐(0)

导航