這是一個事實吧?。。?/p>
站在用戶的角度思考問題,與客戶深入溝通,找到豐澤網站設計與豐澤網站推廣的解決方案,憑借多年的經驗,讓設計與互聯網技術結合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都網站制作、網站建設、外貿網站建設、企業(yè)官網、英文網站、手機端網站、網站推廣、域名申請、網頁空間、企業(yè)郵箱。業(yè)務覆蓋豐澤地區(qū)。
1.復制自己的東西。那這樣是無可厚非的,畢竟是自己的嘛,而且復制黏貼另外的一種解釋,并非是貶義的意思,而是說你能充分的利用自己先前學過的知識來進行快速開發(fā),這樣不是很OK?而且,現在大牛的程序員,它的硬盤里
有各種類型的系統、網站,你只要叫他弄,幾下就搞一個給你,這樣不是很牛嗎?當然
這是好事。
2.是貶義的意思,為什么呢?說現在很多程序員不懂的創(chuàng)新嘛,比如說現在javascript這個東東,很多人都不學它的具體語法,因為很多網上都有現成的呢。你只需要知道怎么用,然后在網上百度就OK了。。。
所以。。你懂的。
使用Java語言如何實現快速文件復制:
代碼:
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.channels.FileChannel;
public class Test {
public static void main(String[] args){
long start = System.currentTimeMillis();
FileInputStream fileInputStream = null;
FileOutputStream fileOutputStream = null;
FileChannel inFileChannel = null;
FileChannel outFileChannel = null;
try {
fileInputStream = new FileInputStream(new File("C:\\from\\不是鬧著玩的.flv"));
fileOutputStream = new FileOutputStream(new File("C:\\to\\不是鬧著玩的.flv"));
inFileChannel = fileInputStream.getChannel();
outFileChannel = fileOutputStream.getChannel();
inFileChannel.transferTo(0, inFileChannel.size(), outFileChannel);//連接兩個通道,從in通道讀取數據寫入out通道。
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if(fileInputStream != null){
fileInputStream.close();
}
if(inFileChannel != null){
inFileChannel.close();
}
if(fileOutputStream != null){
fileOutputStream.close();
}
if(outFileChannel != null){
outFileChannel.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
long end = System.currentTimeMillis();
System.out.println("視頻文件從“from”文件夾復制到“to”文件需要" + (end - start) + "毫秒。");
}
}
script language="javascript"
function copyToClipBoard(id){
//var bankName = document.getElementById("yh"+id).innerHTML;
var account = document.getElementById("span"+id).innerHTML;
account = account.replace(" ","");
var index = 0;
while(index != -1){
account = account.replace(" ","");
index = account.indexOf(" ");
}
var clipBoardContent=account;
window.clipboardData.setData("Text",clipBoardContent);
alert("溫馨提示:\n\n您已經成功復制該銀行賬號!\n請直接粘貼到網銀轉賬的收款方管理賬號中。");
}
/script
--------------------------------------------------------------------
p銀行賬號:span id="span1" onclick="copyToClipBoard(1);"6222 0212 0300 1928 125/span /p
p銀行賬號:span id="span2" onclick="copyToClipBoard(2);"6222 0212 0300 1928 144/span /p
p銀行賬號:span id="span3" onclick="copyToClipBoard(3);"6222 0212 0300 1928 166/span /p
如果是JTable.等java圖形界面的組件,那么獲取數據,賦值都比較簡單.
但是看圖片,是要寫一個Excel的輔助功能, 這對java來說還是有點麻煩了.
最優(yōu)建議:
Excel的功能. 那么最佳的建議,是使用vba 語言進行擴展.(微軟出品,簡單,方便,代碼量極少) .
其次的建議:
C/C++ 鍵盤鉤子 , 當讀取到按鍵F9時 ,模擬鍵盤的復制粘貼等操作.
不推薦java , 但java也能勉強湊合解決這個問題:
因為java 很難獲取系統底層的按鍵, Robot也很有局限, 比如窗口失去焦點的時候,讀取不到F9按鍵. ? 所以java需要調用JNI c語言 比較繁瑣. 比較簡單的是調用JNA了,但代碼量也不少.
當然了如果非要用java寫,也可以,我手寫了一個簡單的JNA+Robot配合
效果圖
一個簡單的方式就是調用cmd命令,使用windows自帶的功能來替你完成這個功能
我給你寫個例子
import java.io.*;
public class test{
public static void main(String[] args){
BufferedReader in = null;
try{
// 這里你就當作操作對dos一樣好了 不過cmd /c 一定不要動
Process pro = Runtime.getRuntime().exec("cmd /c copy d:\\ReadMe.txt e:\\");
in = new BufferedReader(new InputStreamReader(pro.getInputStream()));
String str;
while((str = in.readLine()) != null){
System.out.println(str);
}
}catch(Exception e){
e.printStackTrace();
}finally{
if(in != null){
try{
in.close();
}catch(IOException i){
i.printStackTrace();
}
}
}
}
}