求一个java图片浏览器的源代码,拜托大家了!!!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求一个java图片浏览器的源代码,拜托大家了!!!相关的知识,希望对你有一定的参考价值。
基于Java程序开发语言,实现一个能用鼠标实现类似图片翻页功能
设计一个程序,能实现图片的显示,放大、缩小功能。
1.当鼠标模拟手指在屏幕上划过时,能实现图片的翻页功能
2.当按住鼠标向左边划过时,程序实现向后翻,显示下一张图片的效果。
3.当按住鼠标向右边划过时,程序实现向前翻,显示前一张图片的效果。
4.当按住左右鼠标键,向上边划过时,程序实现当前图片放大的效果。
5.当按住左右鼠标键,向下边划过时,程序实现当前图片缩小的效果。
在二十个象素内,认为是水平的。
你看一下吧
还好你这个是鼠标按住移动,如果只是鼠移动就麻烦了
----------------------------------------
import java.awt.Graphics;
import java.awt.MouseInfo;
import java.awt.Point;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.io.File;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.filechooser.FileNameExtensionFilter;
public class App extends JFrame implements MouseListener, ActionListener
int x = 0;
int y = 0;
File[] selectedFiles = null;
int fileIndex = 0;
int width = 200;
int height = 200;
public App()
setDefaultCloseOperation(EXIT_ON_CLOSE);
setLocationRelativeTo(null);
setSize(400, 300);
setResizable(false);
getContentPane().setLayout(null);
JPanel panel = new ImagePanel();
panel.setBounds(12, 40, 370, 218);
getContentPane().add(panel);
addMouseListener(this);
JButton btnBrowse = new JButton("Browse");
btnBrowse.addActionListener(this);
btnBrowse.setBounds(12, 9, 91, 21);
getContentPane().add(btnBrowse);
setVisible(true);
public static void main(String[] args)
new App();
public void actionPerformed(ActionEvent e)
JFileChooser chooser = new JFileChooser();
chooser.setMultiSelectionEnabled(true);
FileNameExtensionFilter filter = new FileNameExtensionFilter(
"JPG & GIF Images", "jpg", "gif");
// 设置文件类型
chooser.setFileFilter(filter);
// 打开选择器面板
int returnVal = chooser.showOpenDialog(this);
if (returnVal == JFileChooser.APPROVE_OPTION)
selectedFiles = chooser.getSelectedFiles();
repaint();
public void mouseClicked(MouseEvent e)
public void mouseEntered(MouseEvent e)
public void mouseExited(MouseEvent e)
public void mousePressed(MouseEvent e)
Point point = MouseInfo.getPointerInfo().getLocation();
x = point.x;
y = point.y;
public void mouseReleased(MouseEvent e)
Point point = MouseInfo.getPointerInfo().getLocation();
int thisX = point.x;
int thisY = point.y;
System.out.println("thisX=" + thisX + " " + "thisY=" + thisY);
if ((y - thisY < 20 && y - thisY > 0)
|| (y - thisY < 0 && y - thisY > -20))
// Y 在20范围内移动认为是水平移动
if (x < thisX)
// right
if (selectedFiles != null
&& fileIndex < selectedFiles.length - 1)
fileIndex++;
else
// left
if (selectedFiles != null && fileIndex > 0)
fileIndex--;
else
if (x < thisX)
// 右下
width += 20;
height += 20;
else
// 左上
width -= 20;
height -= 20;
repaint();
class ImagePanel extends JPanel
public void paint(Graphics g)
super.paint(g);
if (selectedFiles != null)
ImageIcon icon = new ImageIcon(selectedFiles[fileIndex]
.getPath());
g.drawImage(icon.getImage(), 0, 0, width, height, this);
本回答被提问者采纳 参考技术B 帮顶,我也要
android中如何上传图片到FTP服务器
在界面点击上传图片的按钮,就打开了图库,然后选择需要上传的图片,点击确定,然后在FTP服务器端就有了刚刚上传的图片(可以指定新的文件夹)
求Damo实例
先将jar包复制到android libs目录下
复制以下实现代码
以下为实现代码:
/**
* 通过ftp上传文件
* @param url ftp服务器地址 如:
* @param port 端口如 :
* @param username 登录名
* @param password 密码
* @param remotePath 上到ftp服务器的磁盘路径
* @param fileNamePath 要上传的文件路径
* @param fileName 要上传的文件名
* @return
*/
public String ftpUpload(String url, String port, String username,String password, String remotePath, String fileNamePath,String fileName)
FTPClient ftpClient = new FTPClient();
FileInputStream fis = null;
String returnMessage = "0";
try
ftpClient.connect(url, Integer.parseInt(port));
boolean loginResult = ftpClient.login(username, password);
int returnCode = ftpClient.getReplyCode();
if (loginResult && FTPReply.isPositiveCompletion(returnCode)) // 如果登录成功
ftpClient.makeDirectory(remotePath);
// 设置上传目录
ftpClient.changeWorkingDirectory(remotePath);
ftpClient.setBufferSize(1024);
ftpClient.setControlEncoding("UTF-8");
ftpClient.enterLocalPassiveMode();
fis = new FileInputStream(fileNamePath + fileName);
ftpClient.storeFile(fileName, fis);
returnMessage = "1"; //上传成功
else // 如果登录失败
returnMessage = "0";
catch (IOException e)
e.printStackTrace();
throw new RuntimeException("FTP客户端出错!", e);
finally
//IOUtils.closeQuietly(fis);
try
ftpClient.disconnect();
catch (IOException e)
e.printStackTrace();
throw new RuntimeException("关闭FTP连接发生异常!", e);
return returnMessage;
追问
可以给我发个Damo示例吗?
追答采纳一下,我给你写好
参考技术A 在安卓环境下可以使用,在java环境下也可以使用,已经在Java环境下实现了功能,然后移植到了安卓手机上,其它都是一样的。[java] view plain copy
package com.photo;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPReply;
public class FileTool
/**
* Description: 向FTP服务器上传文件
*
* @param url
* FTP服务器hostname
* @param port
* FTP服务器端口
* @param username
* FTP登录账号
* @param password
* FTP登录密码
* @param path
* FTP服务器保存目录,是linux下的目录形式,如/photo/
* @param filename
* 上传到FTP服务器上的文件名,是自己定义的名字,
* @param input
* 输入流
* @return 成功返回true,否则返回false
*/
public static boolean uploadFile(String url, int port, String username,
String password, String path, String filename, InputStream input)
boolean success = false;
FTPClient ftp = new FTPClient();
try
int reply;
ftp.connect(url, port);// 连接FTP服务器
// 如果采用默认端口,可以使用ftp.connect(url)的方式直接连接FTP服务器
ftp.login(username, password);//登录
reply = ftp.getReplyCode();
if (!FTPReply.isPositiveCompletion(reply))
ftp.disconnect();
return success;
ftp.changeWorkingDirectory(path);
ftp.storeFile(filename, input);
input.close();
ftp.logout();
success = true;
catch (IOException e)
e.printStackTrace();
finally
if (ftp.isConnected())
try
ftp.disconnect();
catch (IOException ioe)
return success;
// 测试
public static void main(String[] args)
FileInputStream in = null ;
File dir = new File("G://pathnew");
File files[] = dir.listFiles();
if(dir.isDirectory())
for(int i=0;i<files.length;i++)
try
in = new FileInputStream(files[i]);
boolean flag = uploadFile("17.8.119.77", 21, "android", "android",
"/photo/", "412424123412341234_20130715120334_" + i + ".jpg", in);
System.out.println(flag);
catch (FileNotFoundException e)
e.printStackTrace();
以上为java代码,下面是android代码。
[java] view plain copy
package com.ftp;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import android.os.Bundle;
import android.app.Activity;
import android.util.Log;
import android.view.Menu;
public class MainActivity extends Activity
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
new uploadThread().start();
class uploadThread extends Thread
@Override
public void run()
FileInputStream in = null ;
File dir = new File("/mnt/sdcard/DCIM/Camera/test/");
File files[] = dir.listFiles();
if(dir.isDirectory())
for(int i=0;i<files.length;i++)
try
in = new FileInputStream(files[i]);
boolean flag = FileTool.uploadFile("17.8.119.77", 21, "android", "android",
"/", "412424123412341234_20130715120334_" + i + ".jpg", in);
System.out.println(flag);
catch (FileNotFoundException e)
e.printStackTrace();
以上是关于求一个java图片浏览器的源代码,拜托大家了!!!的主要内容,如果未能解决你的问题,请参考以下文章
java中如何为JFrame设置背景图片,拜托给一个简单的实例。谢谢了。
求javascript写一个方块或图片沿窗体做矩形运动的代码
imageButton 中,怎么实现 src 的图片 和imagebutton 大小 相同拜托各位大神