`
文章列表
转自: http://razorcap.com/%E5%A6%82%E4%BD%95%E5%9C%A8ios%E4%BD%BF%E7%94%A8inappsettingskit/     如何在iOS使用InAppSettingsKit Posted on February 7, 2011 如果App需¦
1.NSDate类 2.NSDateFormatter 3.NSCalendar 4.UIDatePicker ----------------------------------------------------------------------------------------- NSDate   NSDate是系统一个日期,时间类 就是返回当期的日期,时间 + (id)date; 返回未来secs秒后的日期,时间 + (id)dateWithTimeIntervalSinceNow:(NSTimeInterval)secs; distantFutu ...
通过XCode创建了一个PhoneGap的应用,运行后请求远程数据时报错:ERROR whitelist rejection。   原因:这是因为没有设置加载地址的访问权限,加载的地址需要授权后才能访问,在Xcode中需要添加要访问的web地址。 解决方法:找到PhoneGap.plist-->ExternalHosts,添加远程加载数据的站点名称或ip地址即可,例如 *。
NSString.h     #define USE_APPLICATION_UNIT_TEST 1 #import <UIKit/UIKit.h> @interface NSString (NSStringDM5) + (NSString *) md5:(NSString *)str; @end       NSString.m   #import "NSString.h" #import <CommonCrypto/CommonDigest.h> @implementation NSStrin ...
本文介绍在Android中实现推送方式的基础知识及相关解决方案。         1.推送方式基础知识:         当我们开发需要和服务器交互的应用程序时,基本上都需要获取服务器端的数据,比如《地震应急通》就需要及时获取服务器上最新的地震信息。要获取服务器 上不定时更新的信息一般来说有两种方法,第一种是客户端使用Pull(拉)的方式,隔一段时间就去服务器上获取信息,看是否有更新的信息出现。第二种就是 服务器使用
1.在HttpClient的方式,创建一个自定义的类,继承自org.apache.http.conn.ssl.SSLSocketFactory,而不使用org.apache.http.conn.ssl.SSLSocketFactory。   import java.io.IOException; import java.net.Socket; import java.net.UnknownHostException; import java.security.KeyManagementEx ...
操作如下:View-->Utilities-->Show File Inspector,然后在右边的identity tab下的Project Name修改项目名称。
I got DataNucleus exception while developing a Google App Engine based Web Application for one of my office clients. Here is the error message. "Class com.xxxxx.xxxxx.domain.XXXXXUser does not seem to have been enhanced. You may want to rerun the enhancer and check for errors in the output.&q ...
http://java.ccidnet.com/art/3737/20040923/472199_1.html
Introduction The Google Data plug-in needs to be installed in Eclipse before you can use it. This page illustrates the steps to install the plug-in in Eclipse. Pre-requisites JDK (Java Development Kit) version 1.5+ Eclipse version 3.3+ and either of the following packages: Eclipse I ...
Myeclipse7.0注册机的源代码,真强!这个源代码号称支持Myeclipse 6.5和7.0两个版本,java的代码,很爽!编译运行后输入想要注册的用户名,然后再控制台下就会生成相应的注册码! import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class MyEclipseGen { private static final String LL = "Decompiling this copyrighted softw ...
public class Common { private static SimpleDateFormat format = new SimpleDateFormat("yyyy-MM"); /** * @param dateString example:2011-6 * @return */ public static int getDayCountOfMonth(String dateString) { try { Date date = format.parse(dateString); Calendar cale ...
對於正常的數據對象的刪除,只需要pm.deletePersistent(object); 對於上傳到GAE服務器中的數據(少量)也可以使用DATA VIEW來直接刪除。 目前問題: 1.使用Eclipse的Google插件開發,開發過程中不斷修改model對象的屬性,那此前本地端已經保存的數據對象不知道如何刪除。在用新的(修改過的)來保存以及查詢就會出錯。 2.已經刪除了war/WEB-INF/appengine-generated下的bin文件,但是數據還是存在。 在Google論壇找到解決方法: 在瀏覽器輸入以下地址就可以出現現有數據,可以進行處理 http://localhost:888 ...
CheckBox check1 = new CheckBox(); check1.setBoxLabel("Brochures"); check1.setValueAttribute("Bro"); CheckBox check2 = new CheckBox(); check2.setBoxLabel("Events"); check2.setValue(true); check2.set ...
Create radio Radio radio = new Radio(); radio.setBoxLabel("Si"); radio.setValue(true); radio.setValueAttribute("true"); Radio radio2 = new Radio(); radio2.setBoxLabel("No"); radio2.setValueAttribute("false"); RadioGroup radioGroup = ...
Global site tag (gtag.js) - Google Analytics