bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

java高效代碼 java碼出高效

Java打印菱形高效簡潔代碼

public?class?shu{

我們提供的服務有:成都網站設計、成都網站制作、微信公眾號開發、網站優化、網站認證、陽谷ssl等。為1000多家企事業單位解決了網站和推廣的問題。提供周到的售前咨詢和貼心的售后服務,是有科學管理、有技術的陽谷網站制作公司

public?static?void?main(String[]?a){

for(int?i=0;i6;i++){

for(int?j=6-i;j0;j--){

System.out.print("?");

}

for(int?k=1;k=2*i+1;k++){

System.out.print("*");

}

System.out.println();

}?

/*以上是打印了一個上等腰三角形*/

for(int?i=6;i=0;i--){

for(int?j=6-i;j0;j--){

System.out.print("?");

}

for(int?k=1;k=2*i+1;k++){

System.out.print("*");

}

System.out.println();

}

}

}

只要把for的數據換下??下等腰三角形就出來了,所以原理其實就是打印2個等腰三角形

如何在Android上編寫高效的Java代碼

比較Android上的Dalvik Java和Java SE

雖然遠在Android出現之前,開發者就能用Java編程語言為移動設備編寫應用程序,但它只是Java中功能極為有限的一個版本,稱為Java ME(微型版)。不同的移動設備還需編寫不同的代碼,因此,寫一個應用程序就能在支持Java ME的任何手機上運行是幾乎不可能的。此外,由于當時不存在很好的在線商店,應用發布過程極其復雜。

Android的問世為開發者提供了構建智能手機強大應用的機會,開發者只需用Java編程語言以及他們熟知的標準Java API編寫代碼。然而,盡管Android開發者仍使用Java SE編譯器來編譯應用程序,你會發現,James Gosling開發的Java和Android設備上的Java存在許多不同之處。

在Android設備上運行的VM(虛擬機)稱為Dalvik。它最初由谷歌的Dan Bornstein開發,適用于CPU和內存受限的移動設備。Java SE和Dalvik Java存在一些差異,主要體現在虛擬機上。Java SE使用了棧機設計,而Dalvik被設計成了基于寄存器的機器。Android SDK中有一個dx工具,它會把Java SE棧機器的字節碼轉換成基于寄存器的Dalvik機器字節碼,該轉換步驟由IDE自動完成。

基于棧的虛擬機和基于寄存器的虛擬機的定義以及差異將不列入討論范圍。由于歷史原因,Android使用基于寄存器的虛擬機。雖然基于寄存器的虛擬機最多可以比基于棧的虛擬機快32%,但這只限于執行時解釋字節碼的虛擬機(也就是說,解釋型虛擬機)。在Android 2.2版本(也稱為Froyo)之前,Dalvik虛擬機都是純解釋型的。Froyo版本引入了JIT編譯器(即時編譯),這是Java SE很早就有的一個優勢。

JIT編譯,也稱為動態翻譯。它在執行前把字節碼翻譯成本機代碼(如圖1所示),這樣主要有兩個好處。首先,它消除了那些純解釋型虛擬機的開銷;其次,它能對本機代碼執行優化,這通常是靜態編譯代碼無法做到的。例如,JIT編譯器可以在它運行的CPU上選擇最合適的優化,也可以根據應用程序的輸入來分析代碼是如何運行的,以便進行下一步的優化

JAVA如何閱讀代碼更高效?

個人經驗,

讀文件有4種方法,

1 按行讀

2 按規定大小字節讀

3 按流讀

4 隨機讀取文件

我認為第3種是最好的,而且他是通吃的,

下面是我從網上找來的,你看看有用嗎?

====================================

前兩天用到讀寫文件的操作,上網搜了一些這方面的資料。很有用的。

java中多種方式讀文件

一、多種方式讀文件內容。

1、按字節讀取文件內容

2、按字符讀取文件內容

3、按行讀取文件內容

4、隨機讀取文件內容

import java.io.BufferedReader;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileReader;

import java.io.IOException;

import java.io.InputStream;

import java.io.InputStreamReader;

import java.io.RandomAccessFile;

import java.io.Reader;

public class ReadFromFile {

/**

* 以字節為單位讀取文件,常用于讀二進制文件,如圖片、聲音、影像等文件。

* @param fileName 文件的名

*/

public static void readFileByBytes(String fileName){

File file = new File(fileName);

InputStream in = null;

try {

System.out.println("以字節為單位讀取文件內容,一次讀一個字節:");

// 一次讀一個字節

in = new FileInputStream(file);

int tempbyte;

while((tempbyte=in.read()) != -1){

System.out.write(tempbyte);

}

in.close();

} catch (IOException e) {

e.printStackTrace();

return;

}

try {

System.out.println("以字節為單位讀取文件內容,一次讀多個字節:");

//一次讀多個字節

byte[] tempbytes = new byte[100];

int byteread = 0;

in = new FileInputStream(fileName);

ReadFromFile.showAvailableBytes(in);

//讀入多個字節到字節數組中,byteread為一次讀入的字節數

while ((byteread = in.read(tempbytes)) != -1){

System.out.write(tempbytes, 0, byteread);

}

} catch (Exception e1) {

e1.printStackTrace();

} finally {

if (in != null){

try {

in.close();

} catch (IOException e1) {

}

}

}

}

/**

* 以字符為單位讀取文件,常用于讀文本,數字等類型的文件

* @param fileName 文件名

*/

public static void readFileByChars(String fileName){

File file = new File(fileName);

Reader reader = null;

try {

System.out.println("以字符為單位讀取文件內容,一次讀一個字節:");

// 一次讀一個字符

reader = new InputStreamReader(new FileInputStream(file));

int tempchar;

while ((tempchar = reader.read()) != -1){

//對于windows下,rn這兩個字符在一起時,表示一個換行。

//但如果這兩個字符分開顯示時,會換兩次行。

//因此,屏蔽掉r,或者屏蔽n。否則,將會多出很多空行。

if (((char)tempchar) != 'r'){

System.out.print((char)tempchar);

}

}

reader.close();

} catch (Exception e) {

e.printStackTrace();

}

try {

System.out.println("以字符為單位讀取文件內容,一次讀多個字節:");

//一次讀多個字符

char[] tempchars = new char[30];

int charread = 0;

reader = new InputStreamReader(new FileInputStream(fileName));

//讀入多個字符到字符數組中,charread為一次讀取字符數

while ((charread = reader.read(tempchars))!=-1){

//同樣屏蔽掉r不顯示

if ((charread == tempchars.length)(tempchars[tempchars.length-1] != 'r')){

System.out.print(tempchars);

}else{

for (int i=0; icharread; i++){

if(tempchars[i] == 'r'){

continue;

}else{

System.out.print(tempchars[i]);

}

}

}

}

} catch (Exception e1) {

e1.printStackTrace();

}finally {

if (reader != null){

try {

reader.close();

} catch (IOException e1) {

}

}

}

}

/**

* 以行為單位讀取文件,常用于讀面向行的格式化文件

* @param fileName 文件名

*/

public static void readFileByLines(String fileName){

File file = new File(fileName);

BufferedReader reader = null;

try {

System.out.println("以行為單位讀取文件內容,一次讀一整行:");

reader = new BufferedReader(new FileReader(file));

String tempString = null;

int line = 1;

//一次讀入一行,直到讀入null為文件結束

while ((tempString = reader.readLine()) != null){

//顯示行號

System.out.println("line " + line + ": " + tempString);

line++;

}

reader.close();

} catch (IOException e) {

e.printStackTrace();

} finally {

if (reader != null){

try {

reader.close();

} catch (IOException e1) {

}

}

}

}

/**

* 隨機讀取文件內容

* @param fileName 文件名

*/

public static void readFileByRandomAccess(String fileName){

RandomAccessFile randomFile = null;

try {

System.out.println("隨機讀取一段文件內容:");

// 打開一個隨機訪問文件流,按只讀方式

randomFile = new RandomAccessFile(fileName, "r");

// 文件長度,字節數

long fileLength = randomFile.length();

// 讀文件的起始位置

int beginIndex = (fileLength 4) ? 4 : 0;

//將讀文件的開始位置移到beginIndex位置。

randomFile.seek(beginIndex);

byte[] bytes = new byte[10];

int byteread = 0;

//一次讀10個字節,如果文件內容不足10個字節,則讀剩下的字節。

//將一次讀取的字節數賦給byteread

while ((byteread = randomFile.read(bytes)) != -1){

System.out.write(bytes, 0, byteread);

}

} catch (IOException e){

e.printStackTrace();

} finally {

if (randomFile != null){

try {

randomFile.close();

} catch (IOException e1) {

}

}

}

}

/**

* 顯示輸入流中還剩的字節數

* @param in

*/

private static void showAvailableBytes(InputStream in){

try {

System.out.println("當前字節輸入流中的字節數為:" + in.available());

} catch (IOException e) {

e.printStackTrace();

}

}

public static void main(String[] args) {

String fileName = "C:/temp/newTemp.txt";

ReadFromFile.readFileByBytes(fileName);

ReadFromFile.readFileByChars(fileName);

ReadFromFile.readFileByLines(fileName);

ReadFromFile.readFileByRandomAccess(fileName);

}

}

二、將內容追加到文件尾部

import java.io.FileWriter;

import java.io.IOException;

import java.io.RandomAccessFile;

/**

* 將內容追加到文件尾部

*/

public class AppendToFile {

/**

* A方法追加文件:使用RandomAccessFile

* @param fileName 文件名

* @param content 追加的內容

*/

public static void appendMethodA(String fileName,String content){

try {

// 打開一個隨機訪問文件流,按讀寫方式

RandomAccessFile randomFile = new RandomAccessFile(fileName, "rw");

// 文件長度,字節數

long fileLength = randomFile.length();

//將寫文件指針移到文件尾。

randomFile.seek(fileLength);

randomFile.writeBytes(content);

randomFile.close();

} catch (IOException e){

e.printStackTrace();

}

}

/**

* B方法追加文件:使用FileWriter

* @param fileName

* @param content

*/

public static void appendMethodB(String fileName, String content){

try {

//打開一個寫文件器,構造函數中的第二個參數true表示以追加形式寫文件

FileWriter writer = new FileWriter(fileName, true);

writer.write(content);

writer.close();

} catch (IOException e) {

e.printStackTrace();

}

}

public static void main(String[] args) {

String fileName = "C:/temp/newTemp.txt";

String content = "new append!";

//按方法A追加文件

AppendToFile.appendMethodA(fileName, content);

AppendToFile.appendMethodA(fileName, "append end. n");

//顯示文件內容

ReadFromFile.readFileByLines(fileName);

//按方法B追加文件

AppendToFile.appendMethodB(fileName, content);

AppendToFile.appendMethodB(fileName, "append end. n");

//顯示文件內容

ReadFromFile.readFileByLines(fileName);

}

}

-----------------------------------------------------------------------------------------------------------------------------------------------

寫入文件

try{

FileWriter fw=new FileWriter(SystemConfig.getRealPath()+"WEB-INF/url.txt");

fw.write("movie"+name);

fw.close();

}catch(IOException e){

e.printStackTrace();

}

讀文件中內容

try{

FileReader fr = null;

fr = new FileReader(SystemConfig.getRealPath()+"WEB-INF/url.txt");

BufferedReader br=new BufferedReader(fr);

String Line = null;

Line = br.readLine();

while(Line!=null){

s=Line;

Line=null;

br.close();

fr.close();

}

}catch(IOException e1){

e1.printStackTrace();

}

上傳文件

try {

InputStream stream = getUpFile().getInputStream();//把文件讀入

OutputStream bos = new FileOutputStream(filePath + "movie" +name);//建立一個上傳文件的輸出流

int bytesRead = 0;

byte[] buffer = new byte[1026];

while ( (bytesRead = stream.read(buffer, 0, 1026)) != -1) {

bos.write(buffer, 0, bytesRead);//將文件寫入服務器

}

bos.close();

stream.close();

}catch(Exception e){

System.err.print(e);

}

怎樣高效的閱讀JavaWeb項目源代碼

首先要理清楚代碼結構和業務結構(應該有些文檔或者大的流程圖),這是閱讀具體代碼的前提。

閱讀Java?web項目的代碼:

你需要找到

View層的代碼:前端頁面、圖片、資源文件都在其中。

Controller層的代碼:控制試圖與模型層以及數據傳遞。

Service層的代碼:業務邏輯。

Dao層的代碼:數據庫訪問邏輯。

從web.xml?-?appcontext.xml?-?xxx

文章名稱:java高效代碼 java碼出高效
轉載來于:http://vcdvsql.cn/article36/ddsehpg.html

成都網站建設公司_創新互聯,為您提供移動網站建設品牌網站建設、網站改版、做網站建站公司、網站設計公司

廣告

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

成都定制網站建設