因为网上找的网址都打不开或下载不了词库,现分享我的词库下载
安装说明:
1:sudo apt-get install stardict
2:下载附件中的文件,解压看附件中的说明
3:sudo mv temp/* /usr/share/stardict/dic
3:重启星际译王...
分类:
系统相关 时间:
2014-09-04 19:06:00
阅读次数:
370
import java.lang.reflect.Array; public class ChangeArrayDemo { public static void main(String[] args) { int temp[] = { 1, 2, 3 }; int newTemp[] = (int...
分类:
其他好文 时间:
2014-09-04 18:39:59
阅读次数:
134
import java.lang.reflect.Array; public class ClassArrayDemo { public static void main(String[] args) { int temp[] = { 1, 2, 3 }; Class c = temp.getCla...
分类:
其他好文 时间:
2014-09-04 18:39:19
阅读次数:
189
今天在SOA应用数据库上运用DBMS_REDEFITION包进行在线非分区表转换分区表操作时,本想DROP掉建的临时表cube_scope_temp不小心后面忘记加"temp"直接执行了,我等意识到这个问题的时候已经晚了,因为项目建设等遗留问题,数据库是非归档模式,也没有做备份,因为怕影响业务,一时...
分类:
数据库 时间:
2014-09-04 16:30:39
阅读次数:
264
冒泡排序:#include #include #include #define N 100000#define M 100000void show_arr(int * a,int n){ int i; for(i = 0; i a[j+1]) { temp = a[j]; a[j] = a[j+1]...
分类:
其他好文 时间:
2014-09-03 22:41:07
阅读次数:
232
访问照片表
select * from zp@dblink1 where a1='11111';
会报错:ora-22992 无法使用从远程表选择的LOB定位器
改为以下方法:
drop table temp
Create table temp as select * from zp@dblink1 where a1='002';
select * from temp;...
分类:
数据库 时间:
2014-09-02 21:25:31
阅读次数:
255
1. 首先在javascript中加入相关代码$('.content .saveCode').on('touchstart', function () {//touchstart if (temp == 0) { jump(); } i...
分类:
移动开发 时间:
2014-09-02 17:43:55
阅读次数:
183
断点调试发现报错的语句为:public ActionResult SomeMethod(string someId){ var temp = SomeService.LoadEntities(a => a.ID == int.Parse(someId));}原因是:在Lambda表达式内部不能实现数...
分类:
其他好文 时间:
2014-09-02 17:17:54
阅读次数:
369
#include/**选择类排序,每天一道算法题 *按照从小到大的顺序进行排序 * *///遍历序列void traverseArray(int *p,int length){ int i=0; for(;ip[j]) index=j; } temp=p[i...
分类:
其他好文 时间:
2014-09-01 17:23:13
阅读次数:
187
#include void InsertSort(int a[],int len)
{ int temp=0,i,j; for(i=1;i=0&&temp<a[j];j--) { a[j+1]=a[j]; } a[j+1]=temp; }
} Pint main()
{ int a[]...
分类:
其他好文 时间:
2014-09-01 12:03:13
阅读次数:
248