1) downlaod www.eclipse.org/downloads or use wget2) decompress the file use tar commend:tar -zxvf eclispse-standard-.......tar.gz -C /opt3) change the...
分类:
系统相关 时间:
2014-08-28 08:28:09
阅读次数:
295
现在zxing已经到了2.2版本,以前的集成方式出了点问题。下面我做出一点修正。以前的版本的集成方法,参考:http://blog.devtang.com/blog/2012/12/23/use-zxing-library/按照以前的方式做好后 然后就是适配以下现在的版本的修改1.增加 SenTes...
分类:
移动开发 时间:
2014-08-27 23:23:28
阅读次数:
388
前些日子sql用到哪里写到哪里,乱七八糟,今天整理了一下,以作备份(虽然开通博客已经八个月了,但是今天还是第一次发表博文,好紧张啊~~)--2014.08.27号整理sql语句1:进入数据库use [数据库名] eg: use [dev] 2:创建表create table 表名([ID] int ...
分类:
数据库 时间:
2014-08-27 23:22:08
阅读次数:
341
Fedora中允许mysql远程访问,可以使用以下三种方式:a、改表。mysql>use mysql;mysql>update user set host = '%' where user = 'root';mysql>select host, user from user;b、授权。例如,你想ro...
分类:
数据库 时间:
2014-08-27 23:20:48
阅读次数:
203
1,链接数据库mysql -hlocalhost -uroot -pEnter password:2,显示数据库show databases;3,使用数据库use 数据库名;4,删除数据库drop database 数据库名5,create database 数据库名;数据表:1,create ta...
分类:
数据库 时间:
2014-08-27 21:57:18
阅读次数:
356
HTML Entities
Some characters are reserved in HTML.
It is not possible to use the less than () signs in your text, because the browser will mix them with tags.
To actually display reserved characters, we must use character entities ...
分类:
Web程序 时间:
2014-08-27 18:54:08
阅读次数:
304
先建好测试环境:
USE TEMPDB
GO
IF OBJECT_ID('T1') IS NOT NULL DROP TABLE T1
IF OBJECT_ID('T2') IS NOT NULL DROP TABLE T2
GO
CREATE TABLE T1(ID1 INT,VAL1 VARCHAR(50))
CREATE TABLE T2(ID2 INT,VAL2 VARCHAR(5...
分类:
其他好文 时间:
2014-08-27 14:50:37
阅读次数:
197
判断list非空 <#if?users?exists?&&?users?size?>?0?>
????<#list?users?as?u>
????????${u.username}-----${u.password}
????</#list>
</#if> 判断对象非空 <#if?user??>
????use...
分类:
其他好文 时间:
2014-08-27 13:13:58
阅读次数:
464
首先看看Left Join 与Right Join 与 Inner Join 与 Full Join对表进行操作后得到的结果。在数据库中新建两张表,并插入要测试的数据。新建表:[sql] USE[Test]GO/******对象:Table[dbo].[EMP]******/SETANSI_NULL...
分类:
数据库 时间:
2014-08-27 12:43:07
阅读次数:
252
完整的HTML结构 样式的引用一。内部编写 (if ues: so use the style just 1 times)!!!#div_css {}(or ues: so don't write"class or id =?" )div.p {}div p {}二。外部引用超链接的样式a {} /...
分类:
Web程序 时间:
2014-08-27 12:25:07
阅读次数:
342