51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 2234|回复: 1
打印 上一主题 下一主题

[原创] LR如何调用引用的JAVA

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2008-5-25 11:30:21 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
vista sp1,lr9.1

写了一个SWING的JAVA类,生成了两个类文件,将com.li.test;这个包放到了LR的脚本文件夹根目录下,然后再LR的-RUNTIMESETTING里面也指定了JDK的版本,

LR里面是这样写的:

        public int action() throws Throwable {
         ObjectInspectorFrame.main((String[]) null);
                return 0;
        }//end of action


运行的时候报这个错:

C:\javalr\Actions.java:20: 无法访问 ObjectInspectorTest
错误的类文件: C:\javalr\com\li\test\ObjectInspectorTest.class
类文件包含错误的类: com.li.test.ObjectInspectorTest
请删除该文件或确保该文件位于正确的类路径子目录中。
        ObjectInspectorTest.main((String[]) null);
        ^
1 错误
Picked up JAVA_TOOL_OPTIONS: -agentlib:jvmhook
Picked up _JAVA_OPTIONS: -Xrunjvmhook -Xbootclasspath/a:C:\PROGRA~1\COMMON~1\MERCUR~1\FUNCTI~1\Java\classes;C:\PROGRA~1\COMMON~1\MERCUR~1\FUNCTI~1\Java\classes\jasmine.jar

向这种一个类当中的MAIN方法会引用到另一个类方法的JAVA文件LR要怎么调用才能编译通过呢,谢谢


JAVA文件如下:

package com.li.test;
import java.awt.*;
import java.awt.event.*;
import java.lang.reflect.*;
import java.util.*;
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.tree.*;

/**
   This program demonstrates how to use a custom tree
   model. It displays the fields of an object.
*/
public class ObjectInspectorTest
{  
   public static void main(String[] args)
   {  
      JFrame frame = new ObjectInspectorFrame();
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      frame.show();
   }
}

/**
   This frame holds the object tree.
*/
class ObjectInspectorFrame extends JFrame
{  
   public ObjectInspectorFrame()
   {  
      setTitle("ObjectInspectorTest");
      setSize(WIDTH, HEIGHT);

      // we inspect this frame object

      Variable v = new Variable(getClass(), "this", this);
      ObjectTreeModel model = new ObjectTreeModel();
      model.setRoot(v);

      // construct and show tree

      tree = new JTree(model);
      getContentPane().add(new JScrollPane(tree),
         BorderLayout.CENTER);
   }

   private JTree tree;
   private static final int WIDTH = 400;
   private static final int HEIGHT = 300;
}

/**
   This tree model describes the tree structure of a Java
   object. Children are the objects that are stored in instance
   variables.
*/
class ObjectTreeModel implements TreeModel
{
   /**
      Constructs an empty tree.
   */
   public ObjectTreeModel()
   {  
      root = null;
   }

   /**
      Sets the root to a given variable.
      @param v the variable that is being described by this tree
   */
   public void setRoot(Variable v)
   {  
      Variable oldRoot = v;
      root = v;
      fireTreeStructureChanged(oldRoot);
   }

   public Object getRoot()
   {  
      return root;
   }

   public int getChildCount(Object parent)
   {  
      return ((Variable)parent).getFields().size();
   }

   public Object getChild(Object parent, int index)
   {  
      ArrayList fields = ((Variable)parent).getFields();
      Field f = (Field)fields.get(index);
      Object parentValue = ((Variable)parent).getValue();
      try
      {  
         return new Variable(f.getType(), f.getName(),
            f.get(parentValue));
      }
      catch(IllegalAccessException e)
      {  
         return null;
      }
   }

   public int getIndexOfChild(Object parent, Object child)
   {  
      int n = getChildCount(parent);
      for (int i = 0; i < n; i++)
         if (getChild(parent, i).equals(child))
            return i;
      return -1;
   }

   public boolean isLeaf(Object node)
   {  
      return getChildCount(node) == 0;
   }

   public void valueForPathChanged(TreePath path,
      Object newValue)
   {}

   public void addTreeModelListener(TreeModelListener l)
   {  
      listenerList.add(TreeModelListener.class, l);
   }

   public void removeTreeModelListener(TreeModelListener l)
   {  
      listenerList.remove(TreeModelListener.class, l);
   }

   protected void fireTreeStructureChanged(Object oldRoot)
   {  
      TreeModelEvent event
         = new TreeModelEvent(this, new Object[] {oldRoot});
      EventListener[] listeners = listenerList.getListeners(
         TreeModelListener.class);
      for (int i = 0; i < listeners.length; i++)
         ((TreeModelListener)listeners).treeStructureChanged(
            event);
   }

   private Variable root;
   private EventListenerList listenerList
      = new EventListenerList();
}

/**
   A variable with a type, name, and value.
*/
class Variable
{
   /**
      Construct a variable
      @param aType the type
      @param aName the name
      @param aValue the value
   */
   public Variable(Class aType, String aName, Object aValue)
   {  
      type = aType;
      name = aName;
      value = aValue;
      fields = new ArrayList();

      /*
         find all fields if we have a class type
         except we don't expand strings and null values
      */

      if (!type.isPrimitive() && !type.isArray() &&
         !type.equals(String.class) && value != null)
      {  
         // get fields from the class and all superclasses
         for (Class c = value.getClass(); c != null;
            c = c.getSuperclass())
         {  
            Field[] f = c.getDeclaredFields();
            AccessibleObject.setAccessible(f, true);

            // get all nonstatic fields
            for (int i = 0; i < f.length; i++)
               if ((f.getModifiers() & Modifier.STATIC) == 0)
                  fields.add(f);
         }
      }
   }

   /**
      Gets the value of this variable.
      @return the value
   */
   public Object getValue()
   {  
      return value;
   }

   /**
      Gets all nonstatic fields of this variable.
      @return an array list of variables describing the fields
   */
   public ArrayList getFields()
   {  
      return fields;
   }

   public String toString()
   {  
      String r = type + " " + name;
      if (type.isPrimitive())
         r += "=" + value;
      else if (type.equals(String.class))
         r += "=" + value;
      else if (value == null)
         r += "=null";
      return r;
   }

   private Class type;
   private String name;
   private Object value;
   private ArrayList fields;
}

[ 本帖最后由 jacksboy 于 2008-5-25 11:31 编辑 ]
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

该用户从未签到

2#
发表于 2008-5-26 15:22:32 | 只看该作者

回复 1# 的帖子

增加点备注吧....
  要不这样的代码只有你能看的懂的..
回复 支持 反对

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-9-27 17:32 , Processed in 0.101409 second(s), 28 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表