- 浏览: 74561 次
- 性别:
- 来自: 泉州
最新评论
-
eppen:
QR-CODE,例子里面生成的是139×139的图片,最小可以 ...
二维码QRCode开源实现 -
eppen:
合并之后日本人那个库(Open Source QR Code ...
二维码QRCode开源实现 -
omica:
很好用,谢谢。。。
二维码QRCode开源实现 -
xyflash:
解密出错 提示:Give up decoding ...
二维码QRCode开源实现
文章列表
import java.io.*;
/**
*
* 该类实现列出某个目录下的所有目录和文件的功能.
* 给定路径如:strPath = e:\\Flash
* 在命令行输入 java FileTree e:\\Flash
*
* @author Administrator
*/
public class FileTree {
public static void getDirAndFiles(String strPath) throws Exception {
File f = new File(strPath);
...
- 2008-08-29 20:29
- 浏览 1779
- 评论(0)
/**
* Factorial.java
*
* 该类从命令行接受数字参数,实现n的阶乘.
*
* @author Administrator
*/
public class Factorial {
public static int factorial(int n) {
if(n > 1) {
return n*factorial(n - 1);
}else {
return 1;
}
}
public static void main(String[] args ...
- 2008-08-29 19:51
- 浏览 1306
- 评论(0)