Project
->
Edit Scheme
->
Run ***(工程名)
->
Arguments
->
Environment Variables添加
NSZombieEnabled YES
MallocStackLogging YES
MallocStackLoggingNoCompact YES
在phonegap的android开发中主要通过WebView显示相关的本地页面。针对WebView设置的代码如下:
//创建相关的Web容器
this.appView = new WebView(DroidGap.this);
this.appView.setId(100);
//设置WebView的布局
this.appView.setLayoutParams(new LinearLayout.LayoutParams(
ViewGroup.LayoutParams.FILL_PARENT,
ViewGroup.LayoutParams.FILL_PARENT,
1.0F));
//获取WebView的WebSetting的几个方法以便于后面通过反射注入相关的存储
WebViewReflect.checkCompatibility();
this.appView.setWebChromeClient(new GapClient(DroidGap.this));
this.setWebViewClient(this.appView, new GapViewClient(this));
this.appView.setInitialScale(100);
this.appView.setVerticalScrollBarEnabled(false);
this.appView.requestFocusFromTouch();
// Enable JavaScript
WebSettings settings = this.appView.getSettings();
//启用js脚本的运行
settings.setJavaScriptEnabled(true);
//js是否可以打开窗体
settings.setJavaScriptCanOpenWindowsAutomatically(true);
settings.setLayoutAlgorithm(LayoutAlgorithm.NORMAL);
// Enable database
settings.setDatabaseEnabled(true);
String databasePath = this.getApplicationContext().getDir("database", Context.MODE_PRIVATE).getPath();
settings.setDatabasePath(databasePath);
// Enable DOM storage
WebViewReflect.setDomStorage(settings);
// Enable built-in geolocation
WebViewReflect.setGeolocationEnabled(settings, true);
// Create callback server and plugin manager
this.callbackServer = new CallbackServer();
this.pluginManager = new PluginManager(this.appView, this);
// Add web view but make it invisible while loading URL
this.appView.setVisibility(View.INVISIBLE);
root.addView(this.appView);
日期:2012-6-10 来源:GBin1.com
cURL 是 一个非常实用的命令行工具,可以有效的帮助你处理URL相关操作和数据传输。最早这个工具用来帮助大家使用命令行格式来编程实现各种不同协议下的文件传 输,如,HTTP,HTTPs,FTP,gopher,sftp等等。我们可以方便的使用批处理或者shell脚本语言来自动处理URL相关的操作。在今 天这篇文章中,我们将简单的介绍大家可能常用的CURL命令行,希望对大家有帮助!
1. 读取URL页面以下命令用来读取一个URL地址内容,如下:
curl http:// www.gbin1.com
读取https协议:
curl https:// www.gbin1.com
读取一个web地址并且保存到一个文件中:
curl -o gbin1.html http:// www.gbin1.com/
读取一个需要HTTP Basic认证的页面:
curl -u username:password http:// www.gbin1.com/
如果页面有重定向,注意curl不会自动处理,你需要添加参数,如下:
.....
来源:最常用的CURL命令大全