《實現(xiàn)屏幕截圖的小程序 java課程設計》由會員分享,可在線閱讀,更多相關《實現(xiàn)屏幕截圖的小程序 java課程設計(10頁珍藏版)》請在裝配圖網上搜索。
1、-
經濟與管理學院信息管理與信息系統(tǒng)專業(yè)
"java實驗周"報告
〔2021 /2021學年 第一學期〕
學生**:
學生班級:
學生**:
指導教師:
2021 年12月25日
. z.
-
實現(xiàn)屏幕截圖的小程序
一、實驗題目
實現(xiàn)屏幕截圖的小程序
二、實驗要求
編程一個應用小程序,能夠具有屏幕截圖的功能,截圖的具體實現(xiàn)有:
〔1〕顯示出工作區(qū)域,即能夠截屏的面積;
〔2〕鼠標可以隨意滑動進展截圖;
〔3〕將所截取的圖片保存在想要保存的位置;
2、
〔4〕程序完畢后可以退出整個應用。
三、程序流程
圖3.1 業(yè)務流程圖
四、 技術原理
程序的主類是cutScreen,繼承自無邊框的框架JWindow;cutScreen()是一個定義屏幕尺寸的構造方法;使用方法mousePressed(MouseEvent e)來監(jiān)聽當前鼠標點擊的動作;用方法mouseReleased(MouseEvent e)監(jiān)聽鼠標松開時,顯示操作窗口;方法mouseDragged(MouseEvent e)監(jiān)聽拖動鼠標;paint(Graphics g)畫出指定的工作區(qū)域;saveImage()保存圖像。
工具欄ToolsWindow類,繼承自有邊框的
3、框架JFrame;方法init〔〕用來設置布局方式為BorderLayout;run()捕捉屏幕截圖。
五、附實驗代碼
import java.awt.*;
import java.awt.event.*;
import java.awt.image.BufferedImage;
import java.awt.image.RescaleOp;
import java.io.File;
import java.io.IOE*ception;
import java.te*t.SimpleDateFormat;
import java.util.Date;
import ja
4、va*.imageio.ImageIO;
import java*.swing.*;
import java*.swing.filechooser.FileNameE*tensionFilter;
import java*.swing.filechooser.FileSystemView;
//Jwindow 是一個無邊框的框架
public class cutScreen e*tends JWindow {
//begin* 開場的橫坐標; beginY開場的縱坐標
private int begin*, beginY, end*, endY;
private Buf
5、feredImage image = null;
private BufferedImage tempImage = null;
private BufferedImage saveImage = null;
private ToolsWindow tools = null;
//構造方法
public cutScreen() throws AWTE*ception, IOE*ception {
// 獲取屏幕尺寸寬和高
int width = Toolkit.getDefaultToolkit().getScreenSize().width;
in
6、t height = Toolkit.getDefaultToolkit().getScreenSize().height;
// 設置窗口大小
//(0, 0, width, height)第一個0代表橫坐標 ,第二個代表縱坐標
this.setBounds(0, 0, width, height);
// 截取屏幕
Robot robot = new Robot();
//參數(shù)Rectangle是代表工作區(qū)域
image = robot.createScreenCapture(new Rectangle(0, 0, width, height));
7、
ImageIO.write(image, "jpg", new File("d:/1"));
// 本窗口添加監(jiān)聽〔適配器〕
this.addMouseListener(new MouseAdapter() {
Override
//當前鼠標點擊動作
public void mousePressed(MouseEvent e) {
begin* = e.get*();
beginY = e.getY();
if (tools != null) {
tools.setVisible(false);
}
8、
}
Override
public void mouseReleased(MouseEvent e) {
// 鼠標松開時,顯示操作窗口
if (tools == null) {
tools = new ToolsWindow(cutScreen.this, e.get*(), e.getY());
} else {
tools.setLocation(e.get*(), e.getY());
}
tools.setVisible(true);
// 將此窗口置于前端,并可以將其設為焦點
9、Window
tools.toFront();
}
});
// 監(jiān)聽拖動鼠標
this.addMouseMotionListener(new MouseMotionAdapter() {
Override
public void mouseDragged(MouseEvent e) {
// 鼠標拖動時,記錄坐標并重繪窗口
end* = e.get*();
endY = e.getY();
// 臨時圖像,用于緩沖屏幕區(qū)域放置屏幕閃爍
Image tempImage2 = createIma
10、ge(cutScreen.this.getWidth(),
cutScreen.this.getHeight());
Graphics g = tempImage2.getGraphics();
g.drawImage(tempImage, 0, 0, null);
int * = Math.min(begin*, end*);
int y = Math.min(beginY, endY);
int width2 = Math.abs(end* - begin*) + 1;
int height2 = Math.abs(
11、endY - beginY) + 1;
g.drawRect(* - 1, y - 1, width2 + 1, height2 + 1);
// 生成子區(qū)域流圖片
saveImage = image.getSubimage(*, y, width2, height2);
//畫出圖片
g.drawImage(saveImage, *, y, null);
//繪制當前指定的區(qū)域的圖片
cutScreen.this.getGraphics().drawImage(tempImage2, 0, 0,
12、 cutScreen.this);
}
});
}
// Override
//畫出指定的工作區(qū)域
public void paint(Graphics g) {
//進展逐像素重縮放
RescaleOp ro = new RescaleOp(0.8f, 0, null);
tempImage = ro.filter(image, null);
g.drawImage(tempImage, 0, 0, this);
}
// 保存圖像到文件
public void saveImage() throws IOE*ce
13、ption {
JFileChooser jfc = new JFileChooser();
jfc.setDialogTitle("保存");
// 文件過濾器,用戶過濾可選擇文件
FileNameE*tensionFilter filter = new FileNameE*tensionFilter("JPG",
"jpg");
jfc.setFileFilter(filter);
// 初始化一個默認文件〔此文件會生成到桌面上〕
// 生成時間
SimpleDateFormat sdf = new SimpleDateFormat
14、("yyyymmddHHmmss");
String fileName = sdf.format(new Date());
File filePath = FileSystemView.getFileSystemView().getHomeDirectory();
File defaultFile = new File(filePath + File.separator + fileName
+ ".jpg");
jfc.setSelectedFile(defaultFile);
int flag = jfc.showSaveDialog(this);
15、
if (flag == JFileChooser.APPROVE_OPTION) {
File file = jfc.getSelectedFile();
String path = file.getPath();
//System.out.println(path);
// 檢查文件后綴,放置用戶忘記輸入后綴或者輸入不正確的后綴
if (!(path.endsWith(".jpg") || path.endsWith(".JPG"))) {
path += ".jpg";
}
// 寫入文件
ImageIO.wr
16、ite(saveImage, "jpg", new File(path));
System.e*it(0);
}
}
/*
* 操作窗口
*/
//ToolsWindow 內部類
class ToolsWindow e*tends JFrame {
private cutScreen parent;
//構造函數(shù)〔cutScreen,int *, int y〕*代表鼠標釋放位置的橫坐標,
public ToolsWindow(cutScreen parent, int *, int y) {
this.parent
17、= parent;
this.init();
this.setLocation(*, y);
//讓窗口里面的組建確定為最正確大小
this.pack();
this.setVisible(true);
}
private void init() {
//設置布局方式為BorderLayout
this.setLayout(new BorderLayout());
//工具欄
JToolBar toolBar = new JToolBar();
// 保存按鈕
utton sa
18、veButton = new utton("保存");
//匿名內部類添加監(jiān)聽
saveButton.addActionListener(new ActionListener() {
Override
public void actionPerformed(ActionEvent e) {
try {
parent.saveImage();
} catch (IOE*ception e1) {
e1.printStackTrace();
}
}
});
toolBar.
19、add(saveButton);
// 關閉按鈕
utton closeButton = new utton("關閉");
closeButton.addActionListener(new ActionListener() {
Override
public void actionPerformed(ActionEvent e) {
System.e*it(0);
}
});
toolBar.add(closeButton);
this.add(toolBar, BorderLayout.CENTER)
20、;
}
}
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
Override
public void run() {
try {
cutScreen cutScreen = new cutScreen();
cutScreen.setVisible(true);
} catch (E*ception e) {
e.printStackTrace();
}
}
});
21、
}
}
六、實驗結果
圖6.1 截圖
圖6.2 保存
七、個人總結
一周的課程設計完畢了,剛開場對所要設計的課題完全沒有頭緒,通過網上查找一些相關資料和同學的幫助,成功設計出能夠實現(xiàn)屏幕截圖的java程序。在這個過程中,我學會了很多,不過,還有很多知識我都不懂,比方有點糊里糊涂的感覺??磥?,課本的知識還是不夠的,我應該擴展自己的課外知識,多多閱讀課外的相關知識,這樣才能對Java更加熟悉。
在此我要謝謝幫助我解決難題的同學們,沒有他們的解答和熱心幫助,我很難完成這個課設。如今科技開展迅速,而Java作為一門計算機語言類的重要課程,要學好Java 是必然的。我堅信,只要有興趣,就能學好。我會培養(yǎng)好自己對Java的興趣,而且繼續(xù)保持下去,為以后的路做好鋪墊。
. z.