`
linkexf
  • 浏览: 14890 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论
文章列表
1。注意多线程调用的问题,避免全局变量。 2。被调用的方法需要extern "C" __declspec(dllexport)声明。 3。类型转换需要明确。再好用基本数据类型。 下次补充。。。
1. 在windows 服务器上安装 FTP服务,下载 Serv-u软件,安装即可。 2. 安装好linux 操纵系统,通过ftp 方式把windows服务器上的JDK(jdk-1_5_0_02-linux-i586.rpm.bin),RESIN和WEB程序传送到linux服务器上。 3. 连接FTP服务命令,打开linux 的终端,输入 # ftp 10.0.0.150(windows服务器ip地址), 输入FTP服务器的用户名 和 密码 即可,然后通过 #get file-name(文件名称) 命令来获取文件。 4. 安装JDK(jdk-1_5_0_02-linux-i586.rpm),在终 ...
在写程序时,写着写着就会发现,怎么整个项目的SQL语句都分散到了,各个程序里头.. 感觉要是出了问题,或是做修改,维护等是不是会比较麻烦呢,不知道各位朋友是如何来处理这个问题的...指教

SQL

    博客分类:
  • java
update ab01 set aab004=replace(aab004,'11','22') where aab004 like '%11%'
由于常用oracle数据库,因此获取oracle中系列号时,可以用sql语句.... Select 系列号名称.nextval from dual 来获取. 不知道其他的数据库怎么获取的..例如MYSQL,SQLSERVER,DB,等等. 希望各位大大补充下.
    public static byte[] readFile(String filename) throws IOException {         if (filename == null || filename.equals("")) {             throw new IOException("无效的文件路径");         }         File file = new File(filename);         long len = file.length();         byte[] bytes = n ...

读起配置文件

    博客分类:
  • java
    public static HashMap readPropertyFile(String file) throws IOException{         HashMap map = new HashMap();         InputStream is = FileUtil.class.getResourceAsStream(file);         Properties properties = new Properties();         properties.load(is);         Enumeration en = properties.proper ...
Global site tag (gtag.js) - Google Analytics