0

我正在尝试在网络浏览器中获取绝对文件路径。我了解到使用纯 HTML 和 javascript 是不可能的,而 Java 小程序是最好的途径。不幸的是,我对 Java 的了解充其量只是初级的。到目前为止,我有这个 java 代码:

import java.awt.*;
import java.awt.event.*;
import java.io.*;
import javax.swing.*;
import java.awt.Color;
/*
   <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" 
           width=150 height=100 
 codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,0,0"> 
     <PARAM NAME="code" value="FileApplet.class">
   </OBJECT>
 */

public class fileabs extends JApplet
{
   private JTextField tfCount;
   final JFileChooser fc = new JFileChooser();

  public void init() {
      setBackground(Color.WHITE);
        JPanel p = new JPanel( new FlowLayout(FlowLayout.CENTER, 15, 15));
        p.add(new JLabel("Select File: "));
        tfCount = new JTextField(50);
        tfCount.setEditable(false);
        p.add(tfCount);
        JButton b2 = new JButton("Browse...");
        p.add(b2);
        b2.addActionListener( new ActionListener(){
            public void actionPerformed(ActionEvent ae) {
               tfCount.setText("dsds");
                int returnVal = fc.showOpenDialog(fileabs.this);
                tfCount.setText(fc.getSelectedFile().getAbsolutePath());
            }
        } );

        // p.add(label);
        add(p);
    }

  public String getFilePath() {
    return tfCount.getText();
  }
}

从我在http://jdk6.java.net/plugin2/liveconnect/#JS_TO_JAVA读到的内容,我可以从 javascript 调用小程序方法,所以我想出了这个测试网页:

<html>
    <head>
    </head>
    <body>
        <applet id="fileabs" archive="fileabs.jar" code="fileabs" width="960" height="60"></applet>
        <a href="#;" onclick="test()">Test</a>
    <script>
        test = function() {
            alert(fileabs.getFilePath());
        };
    </script>
    </body>
</html>

但是,在萤火虫控制台中,我得到:

类型错误:fileabs.getFilePath 不是函数

我觉得我错过了一些明显的东西。谁能帮我弄清楚我在这里有什么问题?

4

2 回答 2

1

您需要首先获取对小程序 DOM 元素的引用。尝试 alert(document.getElementById('fileabs').getFilePath());

于 2013-04-16T01:22:11.953 回答
1

The code works as written. The issue turned out to be a cached version of the applet that didn't have the method I was calling.

于 2013-04-18T17:34:46.397 回答