<?xml version="1.0" encoding="gbk"?>
<rss version="2.0">
  <channel>
    <title>机器学习和生物信息学实验室联盟 - JAVA</title>
    <link>http://123.57.240.48/forum.php?mod=forumdisplay&amp;fid=63</link>
    <description>Latest 20 threads of JAVA</description>
    <copyright>Copyright(C) 机器学习和生物信息学实验室联盟</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Thu, 04 Jun 2026 21:40:47 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://123.57.240.48/static/image/common/logo_88_31.gif</url>
      <title>机器学习和生物信息学实验室联盟</title>
      <link>http://123.57.240.48/</link>
    </image>
    <item>
      <title>Java开发规范（持续讨论更新）</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=1296</link>
      <description><![CDATA[今天例行组会，我们提出了制定Java规范的想法。

针对我们学校环境来说，师兄师姐毕业，师弟师妹入学，如果我们没有统一的完成的编程规范，每个人按照自己的编程风格和编程方法进行程序开发，在毕业之后很少有人能读懂他的程序，对于后期的维护来说是一件非常头疼的问 ...]]></description>
      <category>JAVA</category>
      <author>shixiang</author>
      <pubDate>Wed, 31 Aug 2016 15:05:29 +0000</pubDate>
    </item>
    <item>
      <title>Eclipse安装egit，同步github</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=1199</link>
      <description><![CDATA[1. 如何在Eclipse下将程序上传到github上？
参考：1,  2

2. 如何在Eclipse下将github上的程序导入？
参考：http://jingyan.baidu.com/article/ce436649fd82543772afd34f.html

注意：你导入的github上的程序，尽管也是eclipse开发的，可能JRE与你机器上的不匹配 ...]]></description>
      <category>JAVA</category>
      <author>zouquan</author>
      <pubDate>Tue, 16 Feb 2016 06:04:17 +0000</pubDate>
    </item>
    <item>
      <title>eclipse教程</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=1128</link>
      <description><![CDATA[eclipse里面集成了很多可以提高编程效率的工具或者插件，快捷键等等，一直找不到比较完整的教程。
无意中搜到这个w3cschool上的教程，窃喜~
    http://www.w3cschool.cc/eclipse/eclipse-tutorial.html]]></description>
      <category>JAVA</category>
      <author>wangjingjing</author>
      <pubDate>Fri, 06 Mar 2015 06:06:56 +0000</pubDate>
    </item>
    <item>
      <title>jar包上传到服务器上的那些事</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=1116</link>
      <description><![CDATA[作为一个彻头彻尾的菜鸟，最近需要在服务器上跑代码，揪心的事可真不少。
      在本地写完代码了，得打包上传到服务器。问题来了，那么多第三方的jar包怎么办？
     要么打成 Runnable的jar包吧，每次打的包都好大，上传效率太低了。要是遇上那种bug还有很多 ...]]></description>
      <category>JAVA</category>
      <author>wangjingjing</author>
      <pubDate>Wed, 07 Jan 2015 12:39:26 +0000</pubDate>
    </item>
    <item>
      <title>5分钟教你学会Java properties</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=1115</link>
      <description><![CDATA[以前年轻的时候，总喜欢在代码中把参数的值写死，改一遍跑一遍，可移植性太糟糕了。自从用了Properties类之后，省事了，代码也规范了一点了。
也就是将常用的，且经常需要修改的参数放置在xx.properties文件中，利用Java中提供的Properties类读取文件中的参数值 ...]]></description>
      <category>JAVA</category>
      <author>wangjingjing</author>
      <pubDate>Wed, 07 Jan 2015 12:12:08 +0000</pubDate>
    </item>
    <item>
      <title>JAR 访问资源路径问题</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=1074</link>
      <description><![CDATA[不知道大家有没有遇到这种问题，在集成环境Eclipse里面使用相对路径创建文件或者访问文件资源时程序可以运行的，但是如果将代码打包成可执行的Jar文件这些资源就无法找到了。
     晚上搞了半天才明白。因为jar包是一个单独的文件而不是一个文件夹。在没 ...]]></description>
      <category>JAVA</category>
      <author>guojiasheng</author>
      <pubDate>Tue, 16 Sep 2014 14:27:16 +0000</pubDate>
    </item>
    <item>
      <title>Java Fork/Join 并行框架 用于集成投票</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=1071</link>
      <description><![CDATA[Fork/Join是一个多线程并行框架，思想和MapReduce 差不多，但是是单机版的。采用“分治”的思想，将一个大任务分解成小任务，并行运行最后合并结果。这个对于我们处理大规模数据是很好用的，下面是我的一个例子，采用串行的集成投票和采用多核并行投票的Fork/Join ...]]></description>
      <category>JAVA</category>
      <author>guojiasheng</author>
      <pubDate>Fri, 12 Sep 2014 03:31:25 +0000</pubDate>
    </item>
    <item>
      <title>Java获取图片的尺寸</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=943</link>
      <description><![CDATA[用Java实现获取一张图片的尺寸，示例用下：代码过于简单，此帖甚虚，欢迎拍砖。]]></description>
      <category>JAVA</category>
      <author>souven</author>
      <pubDate>Thu, 29 Aug 2013 05:44:37 +0000</pubDate>
    </item>
    <item>
      <title>按行分割数据</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=933</link>
      <description><![CDATA[一个大的数据文件运行起来速度有时候会很慢，这样的话可以分成多个小文件分别的运行。]]></description>
      <category>JAVA</category>
      <author>JinjinLi</author>
      <pubDate>Sun, 14 Jul 2013 01:14:45 +0000</pubDate>
    </item>
    <item>
      <title>因误删表空间导致的oracle数据库错误</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=912</link>
      <description><![CDATA[如果你在建立一个表空间之后，发现建立错了，想要删除它，最好不要直接强制删除，这样做的后果就是在你重新连接之后，不论你做什么，都会爆出一个错误 ora-01109:数据库未打开，最好的方法就是drop tablespace xxxx;

但是已经碰到了这个错误了，怎么办呢？不要着急， ...]]></description>
      <category>JAVA</category>
      <author>hsc</author>
      <pubDate>Wed, 29 May 2013 12:05:42 +0000</pubDate>
    </item>
    <item>
      <title>一道题引发的思考</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=880</link>
      <description><![CDATA[]]></description>
      <category>JAVA</category>
      <author>blue_friday</author>
      <pubDate>Sun, 07 Apr 2013 05:46:02 +0000</pubDate>
    </item>
    <item>
      <title>Junit浅学笔记（网上看的相当不错）</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=879</link>
      <description><![CDATA[RT……笔记一、二、三+一个详解
     附带来个《单元测试之道》

     上链接
      笔记一
      笔记二
      笔记三
      Junit4 详解]]></description>
      <category>JAVA</category>
      <author>小疯纸一枚</author>
      <pubDate>Sat, 06 Apr 2013 01:25:36 +0000</pubDate>
    </item>
    <item>
      <title>Apache Commons</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=787</link>
      <description><![CDATA[对java的一些补充，平时很少用到，今天想求不完全beta函数的问题，发现里面有直接的实现。

---------------------
Attributes
BCEL
Beanutils
Betwixt
BSF
Chain
CLI
Codec
Collections
Configuration
CLI
Daemon
DBCP
DbUtils
Digester
Discove ...]]></description>
      <category>JAVA</category>
      <author>xmubingo</author>
      <pubDate>Wed, 21 Nov 2012 07:26:01 +0000</pubDate>
    </item>
    <item>
      <title>求助！！！</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=693</link>
      <description><![CDATA[有谁对于处理IO方面有很深的了解？

我这里有一个数据结构，想要存储到硬盘上，要求还能保证数据结构的完整性，load进内存的时候可以直接用，但是怎么能把他最快的写入到文件中呢？当然该数据结构很大，最大的时候会有2^32-1的长度

另外还有一个文件中一个字符串有 ...]]></description>
      <category>JAVA</category>
      <author>hsc</author>
      <pubDate>Fri, 05 Oct 2012 04:10:45 +0000</pubDate>
    </item>
    <item>
      <title>java怎么获取linux系统cpu和内存的信息</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=684</link>
      <description><![CDATA[linux系统提供了两个文件用来保存cpu信息和内存信息，分别是/porc/cpuinfo和/proc/meminfo，一般来说程序获取linux系统的这些信息也都是直接使用这两个文件来查看的，我写了一个程序把这两个文件中每一个细节信息都列出来了，方法都是静态方法，可以直接调用，其中具体 ...]]></description>
      <category>JAVA</category>
      <author>hsc</author>
      <pubDate>Tue, 18 Sep 2012 04:14:35 +0000</pubDate>
    </item>
    <item>
      <title>fastutil</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=667</link>
      <description><![CDATA[http://fastutil.di.unimi.it/

fastutil 在Java 的集合框架的基础上进行扩展，主要的目的是快速存取以及低内存占用。同时也提供了一组快速的API用来读写文本和二进制文件。

哪位同学能写份文档？我有重奖！]]></description>
      <category>JAVA</category>
      <author>zouquan</author>
      <pubDate>Fri, 24 Aug 2012 11:55:54 +0000</pubDate>
    </item>
    <item>
      <title>MPIJava</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=635</link>
      <description><![CDATA[http://sourceforge.net/projects/mpijava/

啥东西都有啊，MPI应该是最简单的并行了吧，呼唤谁来试用一下，有重奖！！！]]></description>
      <category>JAVA</category>
      <author>zouquan</author>
      <pubDate>Mon, 23 Jul 2012 13:18:40 +0000</pubDate>
    </item>
    <item>
      <title>guava，google的JDK</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=630</link>
      <description><![CDATA[http://code.google.com/p/guava-libraries/wiki/GuavaExplained

假期我会组织大家一起学，建议有精力的同学提前学]]></description>
      <category>JAVA</category>
      <author>zouquan</author>
      <pubDate>Wed, 11 Jul 2012 07:11:03 +0000</pubDate>
    </item>
    <item>
      <title>【求助】libsvm不平衡分类</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=607</link>
      <description><![CDATA[使用libsvm分类（分为两类0/1），类别权重参数设置为\&quot;-W\&quot;, \&quot;0.1 0.9\&quot; ，详细参数设置如下:

String[] options = {\&quot;-S\&quot;, \&quot;0\&quot;, \&quot;-K\&quot;, \&quot;2\&quot;, \&quot;-D\&quot;, \&quot;3\&quot;, \&quot;-G\&quot;, \&quot;0.16\&quot;, \&quot;-R\&quot;, \&quot;0.0\&quot;, \&quot;-W\&quot;, \&quot;0.1 0.9\&quot;, \&quot;-N\&quot;, \&quot;0.5\&quot;, \&quot;-M\&quot;, \&quot;40.0\&quot;, \&quot;-C\&quot;, \&quot;1.0\&quot;, \&quot;-E\&quot;, \&quot;0.0010\&quot;,]]></description>
      <category>JAVA</category>
      <author>fiona</author>
      <pubDate>Mon, 11 Jun 2012 05:48:32 +0000</pubDate>
    </item>
    <item>
      <title>关于Java6 杀死线程问题</title>
      <link>http://123.57.240.48/forum.php?mod=viewthread&amp;tid=558</link>
      <description><![CDATA[问题描述:
针对，D3C串行执行分类器训练模型的改进，
提出了多线程化分类器训练过程方案。


如图，首先，在主线程Main函数中，开启多个线程用于各个分类器训练(D3C的Test包含20个分类器)，以及一个
线程监听程序，每隔固定时间，监测每个分类器是否训练完成，此 ...]]></description>
      <category>JAVA</category>
      <author>chenwq</author>
      <pubDate>Sun, 22 Apr 2012 15:41:06 +0000</pubDate>
    </item>
  </channel>
</rss>