码迷,mamicode.com
首页 >  
搜索关键字:apparently in use by the system    ( 77236个结果
多文件上传简单实现
五一假期后的第一天上班,无聊,做了一个简单的多文件上传,如下:using System;using System.Collections.Generic;using System.ComponentModel;using System.Drawing;using System.Data;using ...
分类:其他好文   时间:2014-05-10 02:11:14    阅读次数:387
Path类型的扩展方法 z
写了一个基于System.IO.Path类型方法的扩展类型,用于快速对文件系统路径进行操作。如下图:其中有许多方法就是直接调用Path类型的静态方法。比如AppendPath方法内部会直接调用Path.Combine。这些方法就不需要再介绍了。下面看一些许多说明的方法:ToDirectory方法会把...
分类:其他好文   时间:2014-05-10 02:09:47    阅读次数:276
位操作:BitVector32结构 z
目录温习位操作BitVector32的位操作CreateMask方法 使用BitVector32.Section来存储小整数BitVector32结构体位于System.Collections.Specialized命名空间内,相对.NET中另外一个位容器BitArray,他的优点是速度快,占用空间...
分类:其他好文   时间:2014-05-10 01:55:15    阅读次数:409
Effective Java 71 Use lazy initialization judiciously
You should initialize most fields normally, not lazily. If you must initialize a field lazily in order to achieve your performance goals, or to break ...
分类:编程语言   时间:2014-05-09 18:32:56    阅读次数:497
简单的新浪微博OAuth认证实现
System.setProperty("weibo4j.oauth.consumerKey", Weibo.CONSUMER_KEY);System.setProperty("weibo4j.oauth.consumerSecret", Weibo.CONSUMER_SECRET); Wei...
分类:其他好文   时间:2014-05-09 18:32:05    阅读次数:312
关于集合的空指针问题
List l=new ArrayList(); System.out.println(l); System.out.println(l==null);输出[]falseList l=Test2.gety(); System.out.println(l...
分类:其他好文   时间:2014-05-06 09:24:46    阅读次数:238
解决eclipse: Resource is out of sync with the file system 报错问题
eclipse版本:4.3在eclipse中搜索时,搜索完之后有时候会弹出错误对话框,错误摘录如下:Resource is out of sync with the file system......分析:这个问题是由于eclipse中文件不同步引起的。在eclipse中,工程文件是由eclipse...
分类:系统相关   时间:2014-05-05 10:51:16    阅读次数:443
修改mysql root密码
mysql密码丢失后,在mysql命令行下执行如下命令,即可将root用户密码清空: mysqld_safe --skip-grant-tables&mysql修改密码 mysql修改,可在mysql命令行执行如下: mysql -u root mysql mysql> UPDATE use...
分类:数据库   时间:2014-05-05 10:34:48    阅读次数:366
Connected system ID hash not found on target at expected base address
出现上述错误的原因有以下几种:1) unused pin没有设置,可能会收到外部信号的干扰;设置未用引脚为As input tri-stated with weak pull-up.2) 系统时钟信号没有约束,或者SDRAM等存储设备的时钟没有配置正确;3) 系统复位信号没有连接外部复位开关;4) ...
分类:其他好文   时间:2014-05-05 09:42:07    阅读次数:704
ORA-32001:write to SPFILE requested but no SPFILE is in use问题的解决
在执行该命令时出现下列错误SYS@PROD>altersystemsetUTL_FILE_DIR=‘/home/oracle‘,‘/home/oracle/temp‘,‘/home/oracle/scripts‘scope=spfile;altersystemsetUTL_FILE_DIR=‘/home/oracle‘,‘/home/oracle/temp‘,‘/home/oracle/scripts‘scope=spfile*ERRORatline1:ORA-32001:wr..
分类:其他好文   时间:2014-05-04 17:08:06    阅读次数:386
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!