《實(shí)現(xiàn)屏幕截圖的小程序 java課程設(shè)計(jì)》由會員分享,可在線閱讀,更多相關(guān)《實(shí)現(xiàn)屏幕截圖的小程序 java課程設(shè)計(jì)(10頁珍藏版)》請?jiān)谘b配圖網(wǎng)上搜索。
1、-
經(jīng)濟(jì)與管理學(xué)院信息管理與信息系統(tǒng)專業(yè)
"java實(shí)驗(yàn)周"報(bào)告
〔2021 /2021學(xué)年 第一學(xué)期〕
學(xué)生**:
學(xué)生班級:
學(xué)生**:
指導(dǎo)教師:
2021 年12月25日
. z.
-
實(shí)現(xiàn)屏幕截圖的小程序
一、實(shí)驗(yàn)題目
實(shí)現(xiàn)屏幕截圖的小程序
二、實(shí)驗(yàn)要求
編程一個(gè)應(yīng)用小程序,能夠具有屏幕截圖的功能,截圖的具體實(shí)現(xiàn)有:
〔1〕顯示出工作區(qū)域,即能夠截屏的面積;
〔2〕鼠標(biāo)可以隨意滑動(dòng)進(jìn)展截圖;
〔3〕將所截取的圖片保存在想要保存的位置;
2、
〔4〕程序完畢后可以退出整個(gè)應(yīng)用。
三、程序流程
圖3.1 業(yè)務(wù)流程圖
四、 技術(shù)原理
程序的主類是cutScreen,繼承自無邊框的框架JWindow;cutScreen()是一個(gè)定義屏幕尺寸的構(gòu)造方法;使用方法mousePressed(MouseEvent e)來監(jiān)聽當(dāng)前鼠標(biāo)點(diǎn)擊的動(dòng)作;用方法mouseReleased(MouseEvent e)監(jiān)聽鼠標(biāo)松開時(shí),顯示操作窗口;方法mouseDragged(MouseEvent e)監(jiān)聽拖動(dòng)鼠標(biāo);paint(Graphics g)畫出指定的工作區(qū)域;saveImage()保存圖像。
工具欄ToolsWindow類,繼承自有邊框的
3、框架JFrame;方法init〔〕用來設(shè)置布局方式為BorderLayout;run()捕捉屏幕截圖。
五、附實(shí)驗(yàn)代碼
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 是一個(gè)無邊框的框架
public class cutScreen e*tends JWindow {
//begin* 開場的橫坐標(biāo); beginY開場的縱坐標(biāo)
private int begin*, beginY, end*, endY;
private Buf
5、feredImage image = null;
private BufferedImage tempImage = null;
private BufferedImage saveImage = null;
private ToolsWindow tools = null;
//構(gòu)造方法
public cutScreen() throws AWTE*ception, IOE*ception {
// 獲取屏幕尺寸寬和高
int width = Toolkit.getDefaultToolkit().getScreenSize().width;
in
6、t height = Toolkit.getDefaultToolkit().getScreenSize().height;
// 設(shè)置窗口大小
//(0, 0, width, height)第一個(gè)0代表橫坐標(biāo) ,第二個(gè)代表縱坐標(biāo)
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
//當(dāng)前鼠標(biāo)點(diǎn)擊動(dòng)作
public void mousePressed(MouseEvent e) {
begin* = e.get*();
beginY = e.getY();
if (tools != null) {
tools.setVisible(false);
}
8、
}
Override
public void mouseReleased(MouseEvent e) {
// 鼠標(biāo)松開時(shí),顯示操作窗口
if (tools == null) {
tools = new ToolsWindow(cutScreen.this, e.get*(), e.getY());
} else {
tools.setLocation(e.get*(), e.getY());
}
tools.setVisible(true);
// 將此窗口置于前端,并可以將其設(shè)為焦點(diǎn)
9、Window
tools.toFront();
}
});
// 監(jiān)聽拖動(dòng)鼠標(biāo)
this.addMouseMotionListener(new MouseMotionAdapter() {
Override
public void mouseDragged(MouseEvent e) {
// 鼠標(biāo)拖動(dòng)時(shí),記錄坐標(biāo)并重繪窗口
end* = e.get*();
endY = e.getY();
// 臨時(shí)圖像,用于緩沖屏幕區(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);
//繪制當(dāng)前指定的區(qū)域的圖片
cutScreen.this.getGraphics().drawImage(tempImage2, 0, 0,
12、 cutScreen.this);
}
});
}
// Override
//畫出指定的工作區(qū)域
public void paint(Graphics g) {
//進(jìn)展逐像素重縮放
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);
// 初始化一個(gè)默認(rèn)文件〔此文件會生成到桌面上〕
// 生成時(shí)間
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 內(nèi)部類
class ToolsWindow e*tends JFrame {
private cutScreen parent;
//構(gòu)造函數(shù)〔cutScreen,int *, int y〕*代表鼠標(biāo)釋放位置的橫坐標(biāo),
public ToolsWindow(cutScreen parent, int *, int y) {
this.parent
17、= parent;
this.init();
this.setLocation(*, y);
//讓窗口里面的組建確定為最正確大小
this.pack();
this.setVisible(true);
}
private void init() {
//設(shè)置布局方式為BorderLayout
this.setLayout(new BorderLayout());
//工具欄
JToolBar toolBar = new JToolBar();
// 保存按鈕
utton sa
18、veButton = new utton("保存");
//匿名內(nèi)部類添加監(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);
// 關(guān)閉按鈕
utton closeButton = new utton("關(guān)閉");
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、
}
}
六、實(shí)驗(yàn)結(jié)果
圖6.1 截圖
圖6.2 保存
七、個(gè)人總結(jié)
一周的課程設(shè)計(jì)完畢了,剛開場對所要設(shè)計(jì)的課題完全沒有頭緒,通過網(wǎng)上查找一些相關(guān)資料和同學(xué)的幫助,成功設(shè)計(jì)出能夠?qū)崿F(xiàn)屏幕截圖的java程序。在這個(gè)過程中,我學(xué)會了很多,不過,還有很多知識我都不懂,比方有點(diǎn)糊里糊涂的感覺??磥恚n本的知識還是不夠的,我應(yīng)該擴(kuò)展自己的課外知識,多多閱讀課外的相關(guān)知識,這樣才能對Java更加熟悉。
在此我要謝謝幫助我解決難題的同學(xué)們,沒有他們的解答和熱心幫助,我很難完成這個(gè)課設(shè)。如今科技開展迅速,而Java作為一門計(jì)算機(jī)語言類的重要課程,要學(xué)好Java 是必然的。我堅(jiān)信,只要有興趣,就能學(xué)好。我會培養(yǎng)好自己對Java的興趣,而且繼續(xù)保持下去,為以后的路做好鋪墊。
. z.