申请地址:http://lbsyun.baidu.com/apiconsole/key
创建应用时有个安全码,那么这个安全码是如何得到呢?
安全码的组成规则为:Android签名证书的sha1值+“;”+packagename(即:数字签名+分号+包名)
获取Android签名证书的sha1值:
windows -> preferance -> android -> build
包名是Android应用程序本身在AndroidManifest.xml 中定义的名称
有了KEY就可以进行开发工作!
failed to create the java virtual machine
打开eclipse 提示failed to create the java virtual machine
解决方案:找到eclipse目录下的eclipse.ini,将256m改为128m
-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.200.v20120913-144807
-product
com.android.ide.eclipse.adt.package.adtproduct
-showsplash
org.eclipse.platform
--l...
table表格设置td宽度 文字太多自动换行
<td width="300px" style="word-wrap:break-word;"></td>
【CI框架】2.2.0版中文用户手册CHM版
CI框架2.2.0版中文用户手册CHM版
下载地址:
百度网盘 http://pan.baidu.com/s/1jGgNNBw
【ci框架】自定义扩展核心控制器类MY_Controller
<?php
class MY_Controller extends CI_Controller{
//构造函数:在构造函数中判断用户是否已经登陆,如果登陆,可进入后台控制器,返回跳转到登陆页面
public function __construct(){
parent::__construct();
$this->load->helper("url");
$this->load->model("user_model");//user_model模型类实例化对象
...
【ci框架】CI框架中使用cookie的三种方式
//第一种设置cookie的方式:采用php原生态的方法设置的cookie的值
setcookie("user_id",$user_info['user_id'],86500);
setcookie("username",$user_info['username'],86500);
setcookie("password",$user_info['password'],86500);
//echo $_COOKIE['username'];
//第二种设置cookie的方式:通过CI框架的input类库设置cookie的值
$this->input-...