版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、精選優(yōu)質(zhì)文檔-傾情為你奉上 經(jīng)濟(jì)與管理學(xué)院信息管理與信息系統(tǒng)專業(yè) java實(shí)驗(yàn)周報(bào)告 (2015/2016學(xué)年 第一學(xué)期) 學(xué)生姓名: 學(xué)生班級(jí): 學(xué)生學(xué)號(hào): 指導(dǎo)教師: 2015年12月25日專心-專注-專業(yè) 實(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)將所截取的圖片保存在想要保存的位置;(4)程序結(jié)束后可以退出整個(gè)應(yīng)用。三、程序流程圖3.1 業(yè)務(wù)流程圖4、 技術(shù)原理程序的主類是cutScreen,繼承自無邊框的框架JWindow;c
2、utScreen()是一個(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類,繼承自有邊框的框架JFrame;方法init()用來設(shè)置布局方式為BorderLayout;run()捕捉屏幕截圖。五、附實(shí)驗(yàn)代碼import java.awt.*;import jav
3、a.awt.event.*;import java.awt.image.BufferedImage;import java.awt.image.RescaleOp;import java.io.File;import java.io.IOException;import java.text.SimpleDateFormat;import java.util.Date;import javax.imageio.ImageIO;import javax.swing.*;import javax.swing.filechooser.FileNameExtensionFilter;import jav
4、ax.swing.filechooser.FileSystemView;/Jwindow 是一個(gè)無邊框的框架 public class cutScreen extends JWindow /beginX 開始的橫坐標(biāo); beginY開始的縱坐標(biāo)private int beginX, beginY, endX, endY;private BufferedImage image = null;private BufferedImage tempImage = null;private BufferedImage saveImage = null;private ToolsWindow tools
5、= null; /構(gòu)造方法public cutScreen() throws AWTException, IOException / 獲取屏幕尺寸寬和高int width = Toolkit.getDefaultToolkit().getScreenSize().width;int height = Toolkit.getDefaultToolkit().getScreenSize().height;/ 設(shè)置窗口大小/(0, 0, width, height)第一個(gè)0代表橫坐標(biāo) ,第二個(gè)代表縱坐標(biāo)this.setBounds(0, 0, width, height);/ 截取屏幕Robot r
6、obot = new Robot();/參數(shù)Rectangle是代表工作區(qū)域image = robot.createScreenCapture(new Rectangle(0, 0, width, height);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) beginX = e.getX()
7、;beginY = e.getY();if (tools != null) tools.setVisible(false);Overridepublic void mouseReleased(MouseEvent e) / 鼠標(biāo)松開時(shí),顯示操作窗口if (tools = null) tools = new ToolsWindow(cutScreen.this, e.getX(), e.getY(); else tools.setLocation(e.getX(), e.getY();tools.setVisible(true);/ 將此窗口置于前端,并可以將其設(shè)為焦點(diǎn) Windowtools.
8、toFront(););/ 監(jiān)聽拖動(dòng)鼠標(biāo)this.addMouseMotionListener(new MouseMotionAdapter() Overridepublic void mouseDragged(MouseEvent e) / 鼠標(biāo)拖動(dòng)時(shí),記錄坐標(biāo)并重繪窗口endX = e.getX();endY = e.getY();/ 臨時(shí)圖像,用于緩沖屏幕區(qū)域放置屏幕閃爍Image tempImage2 = createImage(cutScreen.this.getWidth(),cutScreen.this.getHeight();Graphics g = tempImage2.ge
9、tGraphics();g.drawImage(tempImage, 0, 0, null);int x = Math.min(beginX, endX);int y = Math.min(beginY, endY);int width2 = Math.abs(endX - beginX) + 1;int height2 = Math.abs(endY - beginY) + 1;g.drawRect(x - 1, y - 1, width2 + 1, height2 + 1);/ 生成子區(qū)域流圖片saveImage = image.getSubimage(x, y, width2, heig
10、ht2);/畫出圖片g.drawImage(saveImage, x, y, null); /繪制當(dāng)前指定的區(qū)域的圖片cutScreen.this.getGraphics().drawImage(tempImage2, 0, 0,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,
11、this);/ 保存圖像到文件public void saveImage() throws IOException JFileChooser jfc = new JFileChooser();jfc.setDialogTitle("保存");/ 文件過濾器,用戶過濾可選擇文件FileNameExtensionFilter filter = new FileNameExtensionFilter("JPG","jpg");jfc.setFileFilter(filter);/ 初始化一個(gè)默認(rèn)文件(此文件會(huì)生成到桌面上)/ 生成時(shí)間Sim
12、pleDateFormat sdf = new SimpleDateFormat("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
13、flag = jfc.showSaveDialog(this);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.
14、write(saveImage, "jpg", new File(path);System.exit(0);/* * 操作窗口 */ToolsWindow 內(nèi)部類class ToolsWindow extends JFrame private cutScreen parent; /構(gòu)造函數(shù)(cutScreen,int x, int y)x代表鼠標(biāo)釋放位置的橫坐標(biāo),public ToolsWindow(cutScreen parent, int x, int y) this.parent = parent;this.init();this.setLocation(x, y);
15、/讓窗口里面的組建確定為最佳大小this.pack();this.setVisible(true);private void init() /設(shè)置布局方式為BorderLayoutthis.setLayout(new BorderLayout();/工具欄JToolBar toolBar = new JToolBar();/ 保存按鈕JButton saveButton = new JButton("保存");/匿名內(nèi)部類添加監(jiān)聽saveButton.addActionListener(new ActionListener() Overridepublic void act
16、ionPerformed(ActionEvent e) try parent.saveImage(); catch (IOException e1) e1.printStackTrace(););toolBar.add(saveButton);/ 關(guān)閉按鈕JButton closeButton = new JButton("關(guān)閉");closeButton.addActionListener(new ActionListener() Overridepublic void actionPerformed(ActionEvent e) System.exit(0););too
17、lBar.add(closeButton);this.add(toolBar, BorderLayout.CENTER);public static void main(String args) EventQueue.invokeLater(new Runnable() Overridepublic void run() try cutScreen cutScreen = new cutScreen();cutScreen.setVisible(true); catch (Exception e) e.printStackTrace(););六、實(shí)驗(yàn)結(jié)果圖6.1 截圖圖6.2 保存七、個(gè)人總結(jié)一周的課程設(shè)計(jì)結(jié)束了,剛開始對(duì)所要設(shè)計(jì)的課題完全沒有頭緒
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024年度綠化工程承包合同
- 大班種子課件教學(xué)課件
- 2024山西勞動(dòng)合同范本
- 2024年度J企業(yè)衛(wèi)星通信技術(shù)服務(wù)合同
- 2024年店面續(xù)租協(xié)議:市中心
- 2024互聯(lián)網(wǎng)銷售涂料產(chǎn)品獨(dú)家代理合同
- 2024年工程進(jìn)度與安全合同
- 2024年建筑修正協(xié)議
- 2024年家用電器維修服務(wù)合同
- 2024雙方關(guān)于影視制作與發(fā)行委托合同
- 眼科護(hù)理中的孕婦與產(chǎn)婦護(hù)理
- 業(yè)主業(yè)主委員會(huì)通用課件
- 了解金融市場(chǎng)和金融產(chǎn)品
- 南京理工大學(xué)2015年613物理化學(xué)(含答案)考研真題
- 初中數(shù)學(xué)應(yīng)用題解題思路分享
- 安全生產(chǎn)科技創(chuàng)新與應(yīng)用
- 人工智能在文化傳承與遺產(chǎn)保護(hù)中的價(jià)值實(shí)現(xiàn)
- 2024年汽修廠開業(yè)計(jì)劃書
- ISTA標(biāo)準(zhǔn)-2A、2B、2C系列解讀(圖文)
- 日間手術(shù)應(yīng)急預(yù)案方案
- 退費(fèi)賬戶確認(rèn)書
評(píng)論
0/150
提交評(píng)論