03 2012 档案

[转]ASP.NET使用flexpaper做在线文档浏览
摘要:本文转自:http://www.cnblogs.com/qiuwuyu/archive/2011/08/26/2154153.html最近有个项目需要用到类似百度文库以及豆丁的在线浏览组件,网上转悠半天就找到了个flexpaper,需要从这里下载http://code.google.com/p/flexpaper/downloads/list 。flexpaper 支持的文档类型为swf格式。于是乎,就想着把pdf文件转换成swf,因为装了adobe reader软件的电脑ms word之类的文档可以直接保存为pdf格式。网上都说pdf2swf这个工具不错,需要从这里下载http://www. 阅读全文

posted @ 2012-03-31 15:35 freeliver54 阅读(1927) 评论(1) 推荐(1)

Eclipse 接口实现查找 的 插件 Implementors
摘要:The plugin may be downloaded here Alternatively, use the Eclipse update site at: http://eclipse-tools.sourceforge.net/updates/ 阅读全文

posted @ 2012-03-30 15:25 freeliver54 阅读(393) 评论(1) 推荐(0)

[转]Android如何防止apk程序被反编译
摘要:本文转自:http://blog.csdn.net/sunboy_2050/article/details/6727640作为Android应用开发者,不得不面对一个尴尬的局面,就是自己辛辛苦苦开发的应用可以被别人很轻易的就反编译出来。Google似乎也发现了这个问题,从SDK2.3开始我们可以看到在android-sdk-windows\tools\下面多了一个proguard文件夹proguard是一个java代码混淆的工具,通过proguard,别人即使反编译你的apk包,也只会看到一些让人很难看懂的代码,从而达到保护代码的作用。下面具体说一说怎么样让SDK2.3下的proguard.c 阅读全文

posted @ 2012-03-30 10:41 freeliver54 阅读(724) 评论(0) 推荐(0)

[转]android中生成和使用jar 分享
摘要:本文转自:http://yueguc.iteye.com/blog/1138661Export Library Prepare source code Create an Android project Create source code, and fix all bug Remove res/* Remove unused source filesEdit AndroidManifest.xml to remove the statements that referes to resource, such as android:icon="@drwable/icon", 阅读全文

posted @ 2012-03-29 17:09 freeliver54 阅读(1775) 评论(1) 推荐(0)

[转]如何把多个Android Project打包成一个APK
摘要:本文转自:http://www.linuxidc.com/Linux/2012-02/53401.htm如何把多个Android Project打包成一个APK(你的项目如何引用其他项目)。如何把多个android project 打包成一个apk呢,其实原理是这样的,一个主project引用其他的project,其他project类似于jar包一样被引用,当然和jar的引用原理有很大的区别。下面是详细的说明。大部分都是翻译的官网开发向导上的文章。第一步,把普通的android project设置成库项目 库项目也是一个标准的android项目,因此你先创建一个普通的android项目。 这个 阅读全文

posted @ 2012-03-29 17:04 freeliver54 阅读(3069) 评论(0) 推荐(0)

android ContentProvider 遭遇 failed to find provider info
摘要:由于是学习测试对ContentProvider的使用所以 建立了两个android project但两个项目的package name 是相同的即manifest 的 package="com.test"在appA中 创建了 contentProvider的相关实现并且在appA的activity中 调用都是OK此时 尝试在appB中 通过Uri对appB中的provider 进行调用时却遭遇了 failed to find provider info ...经多次尝试最后又创建了第三个项目appC 不同的是package="com.testC"相同的代 阅读全文

posted @ 2012-03-29 16:34 freeliver54 阅读(8768) 评论(1) 推荐(0)

[转]coolpad 获得 root
摘要:本文转自:http://zhidao.baidu.com/question/400136781.html问:刚买了一部酷派7260,联通定制的东西太多了,希望能root然后删掉,不想刷机,但是想root,还有root失败后有什么后果。满意回答小弟教楼主一个百试百爽的方法,小弟亲自ROOT成功的说!不用任何所谓的教程,不用浪费流量去下载什麽ROOT软件,只要楼主按照我说的步骤去操作就可以了!用电脑下载一个叫“蘑菇云”的刷机软件,用这个来获取最高权限,真正的一键获取最高权限,俗称一键ROOT!要用数据线连接蘑菇云方可实现一键ROOT,连接时,手机的设置-应用程序-未知来源(要勾选发亮),设置-应用 阅读全文

posted @ 2012-03-28 10:17 freeliver54 阅读(1695) 评论(1) 推荐(0)

[转]c# .net 用程序画图 曲线图
摘要:本文转自:http://www.cnblogs.com/top5/archive/2010/03/02/1676799.htmlusing System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;using Sys 阅读全文

posted @ 2012-03-27 09:06 freeliver54 阅读(554) 评论(0) 推荐(0)

[转]Android下ContentProvider 学习总结
摘要:本文转自:http://hi.baidu.com/yangduoliver/blog/item/a95efcf2577f1b06b07ec5c6.html1、ContentProvider的基本概念 1> ContentProvider为存储和读取数据提供了统一的接口 2> 使用ContentProvider,应用程序可以实现数据共享 3> android内置的许多数据都是使用ContentProvider形式,供开发者调用的(如视频,音频,图片,通讯录等)2、Uri 1> 每一个ContentProvider都拥有一个公共的Uri,这个Uri用于表示这个Content 阅读全文

posted @ 2012-03-26 13:03 freeliver54 阅读(385) 评论(2) 推荐(0)

[转]Flex Loader加载图片在BitmapImage上显示
摘要:本文转自:http://blog.163.com/qiyang_2006@126/blog/static/572122572010914105841996/private var loader:Loader=new Loader(); private var urlR:URLRequest=new URLRequest();private function init():void{ //显示图片 var str:String="image/20100620104112_0f_08_02_0c.jpg"; var str2:String="image/2010062 阅读全文

posted @ 2012-03-22 10:39 freeliver54 阅读(4790) 评论(1) 推荐(0)

[转]java 如何打jar包
摘要:本文转自:http://touch-mai.iteye.com/blog/762404jar文件听说过吗,没有?或者陌生!好,没关系,这就是我们的第一站:打包发布。为什么会有这个玩意呢,首先,这是jar的全称:JavaTM Archive (JAR) file,是的,就是java存档文件。这有点类似zip文件,想一想它是干什么的用的呢,压缩!?没错就是要压缩,将我们原先零散的东西放到一下,重新组织,所有这些目的只有一个:方便!好了,不用管他是怎么压缩的,我们的重点是哪些是我们要压缩的(输入),还有压缩成了什么(输出),进而将它发布(部署)。 那我们的输入(要压缩的东西)主要是cl... 阅读全文

posted @ 2012-03-21 07:10 freeliver54 阅读(420) 评论(0) 推荐(0)

护照办理
摘要:办理护照,只能在户籍所在地的公安局出入境管理处办理 程序是: 一、需要携带以下资料: 1、身份证 2、户口簿 3、相片(必须在公安局指定的照相馆拍照,也可以在出入境拍照,但记得一定要拿拍照时的回执)。 二、办理费用: 护照200元,拍照和快递费用大概50元左右。 三、办理时限: 15个工作日。 四、办理程序: 1、排队拍照(如果预先准备,就不用) 2、填写申请表 3、排队轮号 4、轮到后,提交申请表,身份证和户口簿复印件、相片和拍照回执 5、交验身份证、户口簿原本 6、交费 7、拿回执(一定要记得拿回执,这是领取护照的凭证) 一、申请条件 中华人民共和国户... 阅读全文

posted @ 2012-03-20 07:46 freeliver54 阅读(295) 评论(0) 推荐(0)

[转]Flex - Formatting Charts - Applying chart styles
摘要:本文转自:http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf65816-7fff.html Applying styles with CSS Applying CSS to chart controls Applying different styles to each series Using predefined axis style properties Using class selectors for axis styles Applying styles inline Applying sty 阅读全文

posted @ 2012-03-08 13:18 freeliver54 阅读(536) 评论(0) 推荐(0)

[转]Flex chart fillfunction
摘要:本文转自:http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7c3f.htmlYou can customize the appearance of chart items in a series by using the fillFunction property to define the fill. This function takes the chart item and its index as arguments, so that you can examine the char 阅读全文

posted @ 2012-03-08 13:03 freeliver54 阅读(938) 评论(0) 推荐(0)

[转]Flex PieChart
摘要:本文转自:http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/charts/PieChart.htmlPieChartExample.mxml<?xml version="1.0"?><!-- Simple example to demonstrate the PieChart control. --><s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s=" 阅读全文

posted @ 2012-03-08 10:46 freeliver54 阅读(1777) 评论(2) 推荐(0)

[转]Flex双Y轴的实现
摘要:本文参考自:http://apps.hi.baidu.com/share/detail/24719901<?xmlversion="1.0"encoding="utf-8"?><s:Applicationxmlns:fx="http://ns.adobe.com/mxml/2009"xmlns:s="library://ns.adobe.com/flex/spark"xmlns:mx="library://ns.adobe.com/flex/mx"minWidth=" 阅读全文

posted @ 2012-03-05 16:35 freeliver54 阅读(475) 评论(1) 推荐(0)

Flash Builder 4 下载
摘要:http://subject.csdn.net/adobedownload/index.html 阅读全文

posted @ 2012-03-03 15:21 freeliver54 阅读(222) 评论(3) 推荐(0)

导航