我做了一个小程序,要求一个人输入密码。输入密码后,它会立即读入" bdd.txt"存放所有引脚的文件然后显示:)如果好并且:(如果错误。到目前为止简单的应用程序。
我想要做的是移动那个"数据库"将文件存入我的计算机上的虚拟机(例如Ubuntu),然后执行相同的操作。这样,它就不再是本地的了,因为文件不再位于我项目的根目录。
这是我的应用程序的样子:
如您所见,应用程序启动,要求用户输入密码。如果这是一个很好的应用程序,那么应用程序就完成了,如果没有,他将再继续尝试2次,直到应用程序停止。
当输入引脚时,我的程序会检入" bdd.txt"如果引脚在那里。它扮演数据库角色:
为了理解我的需要,有必要将这个程序同化为需要安全的东西。我们不希望pin数据库与程序(或现实生活中的设备)位于同一位置。所以我们将它放在虚拟机上,我们必须在Eclipse中的Windows7 Java程序和VMWare Player的Ubuntu上的bdd.txt文件之间进行通信。
我的问题是这怎么可能?我如何更改代码以让我的程序在我的VM上实现某些功能?我应该使用它的特定技术吗?我是否需要先进行一些配置?
这是我的代码:
import java.io.*;
import java.util.*;
import java.util.concurrent.atomic.AtomicInteger;
import javax.swing.*;
import javax.swing.text.AttributeSet;
import javax.swing.text.BadLocationException;
import javax.swing.text.DocumentFilter;
import javax.swing.text.PlainDocument;
import java.awt.*;
import java.awt.event.*;
public class Main extends JFrame {
private static final long serialVersionUID = 1L;
private JPanel container = new JPanel();
private JPasswordField p1 = new JPasswordField(4);
private JLabel label = new JLabel("Enter Pin: ");
private JButton b = new JButton("OK");
public Main() {
this.setTitle("NEEDS");
this.setSize(300, 500);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setLocationRelativeTo(null);
container.setBackground(Color.white);
container.setLayout(new BorderLayout());
container.add(p1);
JPanel top = new JPanel();
PlainDocument document =(PlainDocument)p1.getDocument();
b.addActionListener(new BoutonListener());
top.add(label);
top.add(p1);
p1.setEchoChar('*');
top.add(b);
document.setDocumentFilter(new DocumentFilter(){
@Override
public void replace(DocumentFilter.FilterBypass fb, int offset, int length, String text, AttributeSet attrs) throws BadLocationException {
String string =fb.getDocument().getText(0, fb.getDocument().getLength())+text;
if(string.length() <= 4)
super.replace(fb, offset, length, text, attrs); //To change body of generated methods, choose Tools | Templates.
}
});
this.setContentPane(top);
this.setVisible(true);
}
class BoutonListener implements ActionListener {
private final AtomicInteger nbTry = new AtomicInteger(0);
ArrayList<Integer> pins = readPinsData(new File("bdd.txt"));
@SuppressWarnings("deprecation")
public void actionPerformed(ActionEvent e) {
if (nbTry.get() > 2) {
JOptionPane.showMessageDialog(null,
"Pin blocked due to 3 wrong tries");
return;
}
final String passEntered=p1.getText().replaceAll("\u00A0", "");
if (passEntered.length() != 4) {
JOptionPane.showMessageDialog(null, "Pin must be 4 digits");
return;
}
//JOptionPane.showMessageDialog(null, "Checking...");
//System.out.println("Checking...");
SwingWorker<Void, Void> worker = new SwingWorker<Void, Void>() {
@Override
protected Void doInBackground() throws Exception {
boolean authenticated = false;
if (pins.contains(Integer.parseInt(passEntered))) {
JOptionPane.showMessageDialog(null, ":)");
authenticated = true;
}
if (!authenticated) {
JOptionPane.showMessageDialog(null, ":(");
nbTry.incrementAndGet();
}
return null;
}
};
worker.execute();
}
}
//Function to read/access my bdd.txt file
static public ArrayList<Integer> readPinsData(File dataFile) {
final ArrayList<Integer> data=new ArrayList<Integer>();
try {
BufferedReader reader = new BufferedReader(new FileReader(dataFile));
String line;
try {
while ((line = reader.readLine()) != null) {
try {
data.add(Integer.parseInt(line));
} catch (NumberFormatException e) {
e.printStackTrace();
System.err.printf("error parsing line '%s'\n", line);
}
}
} finally {
reader.close();
}
} catch (Exception e) {
e.printStackTrace();
System.err.println("error:"+e.getMessage());
}
return data;
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new Main();
}
});
}
}
有什么想法吗?谢谢,
弗洛朗。
答案 0 :(得分:2)
共享文件夹肯定会有效,但是根本没有任何关键,因为PIN文件也在主机上,而java正在直接读取它。
也许你需要一个客户端/服务器架构?
您使用UI编程将是客户端。客户端将配置一种调用服务器的方法(IP地址和端口)。客户端无权访问bdd.txt文件,但服务器可以访问。
在您的VM上,您有另一个Java应用程序,即服务器。您的服务器侦听来自客户端的请求。该请求将包含用户输入的PIN。然后,服务器根据文件中的PIN对其进行检查,并回答“是”或“否”。您的客户端收到服务器的是/否响应,并将结果报告给用户。
了解套接字编程here以开始使用
答案 1 :(得分:0)
您需要做两件事:
让您的应用程序从共享文件夹中读取pin文件。这意味着改变这一行:
ArrayList<Integer> pins = readPinsData(new File("bdd.txt"));
现在,此代码正在从用户所在的当前目录中读取文件bdd.txt,我假设该文件是您的可执行文件所在的目录。相反,您希望它指向共享目录中的pin文件。为了使代码尽可能灵活,您可能希望在启动程序时将路径文件的路径作为命令行参数传递。