首页 > 其他 > 详细

java的一些程序

时间:2014-03-04 22:11:33      阅读:458      评论:0      收藏:0      [点我收藏+]

1、文件读取并打印

import java.io.*;
public class readandprint{
//*********Found********
public static void main(String args[]) throws Exception{
long filePoint = 0 ;
String s;
RandomAccessFile file = new RandomAccessFile("D:\\javaceshu\\readandprint.java","r");
long fileLength = file.length();
while (filePoint<fileLength){
//*********Found********
s = file.readLine();
System.out.println(s); 
filePoint = file.getFilePointer();
                            }
file.close();
    }
}

2、图形程序显示乘法

import javax.swing.JOptionPane;
public class Java_1 {
public static void main( String args[] ) {
int x, y, result;
String xVal, yVal;
xVal = JOptionPane.showInputDialog( "输入第1个整数:" );
yVal = JOptionPane.showInputDialog( "输入第2个整数:" );
//*********Found********
x = Integer.parseInt(xVal);
y = Integer.parseInt( yVal );
result = x * y;
//*********Found********
JOptionPane.showMessageDialog( null, "两个数的积: " + result );
System.exit( 0 );
}
}

java的一些程序,布布扣,bubuko.com

java的一些程序

原文:http://www.cnblogs.com/bluewelkin/p/3579906.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!