SQL语句创建数据库:create table student(id int not null
primary key,number nvarchar not null,name nvarchar not null,brithday DateTime
default getdate(), adres...
分类:
数据库 时间:
2014-06-10 19:48:24
阅读次数:
284
上一篇文章主要介绍的图片文件的下载与显示,这一篇文章主要介绍如何根据网页的地址,获取网页源代码的获取
其实,网站源代码的获取比图片的下载与显示更加简单,只需要对之前的代码稍作修改即可
public class OtherActivity extends Activity {
private TextView tv;
private static final int LOAD_SU...
分类:
移动开发 时间:
2014-06-10 15:27:58
阅读次数:
274
使用sql语句创建和删除约束
主建约束:(primary key constraint);
唯一约束:(unique constraint);
检查约束:(check constraint);
默认约束:(default constraint);
外建约束:(foreign key constraint);
*********************************************...
分类:
数据库 时间:
2014-06-10 13:28:14
阅读次数:
260
LINUX 如下:
1)导出数据
[root@www.cnscn.org ~]$ mysqldump -u root -p dbname --default-character-set=gbk > base_user.sql;
2)查看导出的sql文件的编码
[root@www.cnscn.org ~]$ file base_user.sql
base_user.sql: UTF-8 Unicode text, with very long lines
3)转成要用的编码
[root@www.cn...
分类:
数据库 时间:
2014-06-10 11:14:39
阅读次数:
394
1、
package com.example.myreceiver;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.content.IntentFilter;
import android.view.Menu;
import android...
分类:
移动开发 时间:
2014-06-10 11:10:49
阅读次数:
275
res/raw和asserts;getWritableDatabase()和getReadableDatabase();代码方式设置Activity;ANR(Application
Not Responding)程序无响应
分类:
移动开发 时间:
2014-06-10 10:35:11
阅读次数:
201
1.伪静态:http://www.cnblogs.com/Default.html目的就是为了赢得更多的收入,至于真否,待SEOer
解答,正如文字所说,伪静态就是假的静态。2.准备工作:下载UrlRewrite/Files/Simcoder/URLRewriter.rar将它放在应用程序bin目录...
分类:
Web程序 时间:
2014-06-10 10:33:06
阅读次数:
282
这是一个轨道磨耗检测上位机程序,和下位机通信用的蓝牙。协议部分是这样的,首先在登陆进去的activity里面建立蓝牙连接,重点和核心是在整个程序的运行中要保证连接一直存在,也许你们不懂,这么说吧,就是我这里面有很多操作的activity,拿测量这一项来说,首先是用户选择线路的这个activity,然后才是测量的10个值的显示activity,还有测量值的绘图activity,这只是测量,还有数据库查询等等。为什么说这是重点呢?想想那个蓝牙聊天程序,它其实只是在主activity那里实现通信的,当然我相信你不...
分类:
其他好文 时间:
2014-06-10 07:03:51
阅读次数:
310
先不多说,直接上代码
public class SimpleMediaPlayerActivity extends Activity {
//private static final Uri mMusicUri = Uri.fromFile(new File("/sdcard/sound_file_1.mp3"));
private static final Uri mMusicUri ...
分类:
移动开发 时间:
2014-06-10 06:22:29
阅读次数:
317