成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

java實訓系統(tǒng)代碼的簡單介紹

這是我們的java實訓內容,有沒有大神知道其中的代碼怎么打?知道幾條也行,謝謝了! 2、?能新

2,3已經實現(xiàn),其他的自己試著做一下不難

創(chuàng)新互聯(lián)是一家集網(wǎng)站建設,六枝企業(yè)網(wǎng)站建設,六枝品牌網(wǎng)站建設,網(wǎng)站定制,六枝網(wǎng)站建設報價,網(wǎng)絡營銷,網(wǎng)絡優(yōu)化,六枝網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強企業(yè)競爭力。可充分滿足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學習、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。

package com.ui;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileNotFoundException;

import java.io.FileOutputStream;

import java.io.IOException;

class NoteBook{

//創(chuàng)建文件

public File creatFile(String path,String name){

File tempPath=new File(path);

File tempFile=new File(path+File.separator+name+".txt");

if(!tempPath.exists()){

tempPath.mkdirs();

try {

tempFile.createNewFile();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}else{

try {

tempFile.createNewFile();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

return tempFile;

}

//寫入文件

public void writeFile(File file,String content){

try {

FileOutputStream fos=new FileOutputStream(file);

fos.write(content.getBytes());

fos.close();

} catch (FileNotFoundException e) {

// TODO Auto-generated catch block

e.printStackTrace();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

//讀取文件

public String readFile(File file){

String str="";

try {

FileInputStream fis=new FileInputStream(file);

int datas;

while((datas=fis.read())!=-1){

str+=String.valueOf((char)datas);

}

} catch (FileNotFoundException e) {

// TODO Auto-generated catch block

e.printStackTrace();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

return str;

}

//復制文件

public ?void copyFile(File f1,File f2){

if(!f1.exists()){

System.out.println("目錄"+f1.getName()+"不存在");

}else{

File[] files=f1.listFiles();

for(File f:files){

if(f.isDirectory()){

File temp=new File(f2,f.getName());

temp.mkdirs();

copyFile(f, temp);

}else{

File temp=new File(f2,f.getName());

try {

temp.createNewFile();

FileOutputStream fos=new FileOutputStream(temp);

FileInputStream fis=new FileInputStream(f);

int datas;

while((datas=fis.read())!=-1){

fos.write(datas);

}

fos.close();

fis.close();

} catch (FileNotFoundException e1) {

// TODO Auto-generated catch block

e1.printStackTrace();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

}

}

}

//剪貼文件

public void cutFile(File f1,File f2){

int i=0;

if(!f1.exists()){

System.out.println("目錄"+f1.getName()+"不存在");

}else{

i++;

File[] files=f1.listFiles();

for(File f:files){

if(f.isDirectory()){

File temp=new File(f2,f.getName());

temp.mkdirs();

cutFile(f, temp);

}else{

File temp=new File(f2,f.getName());

try {

temp.createNewFile();

FileOutputStream fos=new FileOutputStream(temp);

FileInputStream fis=new FileInputStream(f);

int datas;

while((datas=fis.read())!=-1){

fos.write(datas);

}

fis.close();

fos.close();

f.delete();

} catch (FileNotFoundException e1) {

// TODO Auto-generated catch block

e1.printStackTrace();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

}

}

f1.delete();

}

}

請高手幫忙解決一個JAVA實驗程序!!

我把你的第一個給你貼上來吧,第二個應該也很簡單,不過我懶得麻煩,而且你那個什么試驗五我也不清楚,代碼如下:

interface A{

public int method1(int x);

public int method2(int x,int y);

}

class B implements A{

public int method1(int x) {

// TODO Auto-generated method stub

int n = 1;

for(;x0;x--)

n=n*5;

return n;

}

public int method2(int x, int y) {

// TODO Auto-generated method stub

if(xy)

return y;

else return x;

}

}

public class test{

public static void main(String[] args){

B b=new B();

System.out.println(b.method1(2));

System.out.println(b.method2(2,8));

}

}

我全部都放到一起了,還有如果什么別的你不喜歡的地方,你自己改改,拿分走人。。。。

畢業(yè)實訓啊,那位大哥給個學生學籍信息管理系統(tǒng)java源代碼,感激不盡

百度一下,想飛社區(qū),在資源里有,應該是在“JAVA開發(fā)-JAVA實例”分類下面。還有不少JAVA方面的案例源碼,你可以參考一下。

分享文章:java實訓系統(tǒng)代碼的簡單介紹
分享網(wǎng)址:http://jinyejixie.com/article48/dohhhep.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供移動網(wǎng)站建設、域名注冊、營銷型網(wǎng)站建設、定制網(wǎng)站面包屑導航、網(wǎng)站設計公司

廣告

聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設
高清| 延长县| 铜陵市| 始兴县| 成安县| 阿克苏市| 斗六市| 大邑县| 青海省| 临潭县| 临漳县| 阳江市| 华安县| 东港市| 惠水县| 光泽县| 大石桥市| 台中县| 喜德县| 台山市| 大丰市| 乌兰县| 登封市| 九龙城区| 偃师市| 咸阳市| 孟州市| 兰州市| 南川市| 曲阳县| 福安市| 宁明县| 吴忠市| 堆龙德庆县| 襄樊市| 汪清县| 丹棱县| 桂平市| 团风县| 南昌县| 郴州市|