您的位置:

python检查java代码(python代码检测)

本文目录一览:

怎样用delta debugging python测试java程序

delta python应该是利用小步快走的,或者是步步为营,或者是渐进式,迭代式这样的开发方法。 本质上,它是一种单元测试。

所以它要测试java,需要java具有delta 测试的条件。比如它的每一个小单元都可以有输入输出,并且最好支持远程debug。这样就可以了。

不过我想delta python应该更适合python程序自己的开发测试吧。 话说回来python程序员都是用print来实现类似的功能的。不需要delta python

python怎么调用java程序

把java封装成restful接口,然后python通过远程调用数据。

使用Pyjnius这个python库。

#源代码:github.com/kivy/pyjnius

#文档:pyjnius.readthedocs.org

#也有其他一些的库,如 JPype 或 Py4j ,它们在设计和可用性方面都不是很好。而使用 Jython也不为另一种选择,因为我们想使用 python开发Android项目。

#现在就让我来告诉你,如何简单的使用Pyjnius:

 from jnius import autoclass  

 Stack = autoclass('java.util.Stack')  

 stack = Stack()  

 stack.push('hello')  

 stack.push('world')  

 stack.pop()  

'world' 

 stack.pop()  

'hello'

python代码转换java代码,由于本人不会python,所以求指教,下面是一小段!

import Crypto.Cipher.DES;

import hashlib.md5;

import static python.lang.System;

public class Test{

    public static void main(String[] args)

    {

        String key = "\x32\x8D\xD2\x0B\xC3\xE6\xD2\xCF";

        DES crypto = new DES(key, DES.MODE_ECB);

        String data = open('a.txt', 'rb').read();

        Object[] data_decrypted = crypto.decrypt(data).rstrip("\0");

        /**这个,后面的有点不兼容。其实不知道DES、md5的源码也改不了,而且java又不能直接调用其中的python代码,除非你写相应的java代码和他们映射**/

    }

}

如何用python写一个脚本,来跑java代码上的cucumber集成测试

1.直接执行Python脚本代码

引用

org.python包

1

PythonInterpreter

interpreter

=

new

PythonInterpreter();

2

interpreter.exec("days=('mod','Tue','Wed','Thu','Fri','Sat','Sun');

");

///执行python脚本

2.

执行python

.py文件

1

PythonInterpreter

interpreter

=

new

PythonInterpreter();

2

InputStream

filepy

=

new

FileInputStream("D:\\demo.py");

3

interpreter.execfile(filepy);

///执行python

py文件

4

filepy.close();

3.

使用Runtime.getRuntime()执行脚本文件

这种方式和.net下面调用cmd执行命令的方式类似。如果执行的python脚本有引用第三方包的,建议使用此种方式。使用上面两种方式会报错java

ImportError:

No

module

named

arcpy。

1

Process

proc

=

Runtime.getRuntime().exec("python

D:\\demo.py");

2

proc.waitFor();

如何在Java中调用Python代码

Jython(原JPython),是一个用Java语言写的Python解释器。 在没有第三方模块的情况下,通常选择利用Jython来调用Python代码, 它是一个开源的JAR包,你可以到官网下载 一个HelloPython程序 importorg.python.util.PythonInterpreter; publicclassHelloPython{ publicstaticvoidmain(String[]args){ PythonInterpreterinterpreter=newPythonInterpreter(); interpreter.exec("print('hello')"); } } 什么是PythonInterpreter?它的中文意思即是“Python解释器”。我们知道Python程序都是通过解释器来执行的,我们在Java中创建一个“解释器”对象,模拟Python解释器的行为,通过exec("Python语句")直接在JVM中执行Python代码,上面代码的输出结果为:hello在Jvm中执行Python脚本 interpreter.execfile("D:/labs/mytest/hello.py");如上,将exec改为execfile就可以了。需要注意的是,这个.py文件不能含有第三方模块,因为这个“Python脚本”最终还是在JVM环境下执行的,如果有第三方模块将会报错:javaImportError:Nomodulenamedxxx 仅在Java中调用Python编写的函数 先完成一个hello.py代码: defhello(): return'Hello'在Java代码中调用这个函数: importorg.python.core.PyFunction; importorg.python.core.PyObject; importorg.python.util.PythonInterpreter; publicclassHelloPython{ publicstaticvoidmain(String[]args){ PythonInterpreterinterpreter=newPythonInterpreter(); interpreter.execfile("D:/labs/hello.py"); PyFunctionpyFunction=interpreter.get("hello",PyFunction.class);//第一个参数为期望获得的函数(变量)的名字,第二个参数为期望返回的对象类型 PyObjectpyObject=pyFunction.__call__();//调用函数 System.out.println(pyObject); } } 上面的代码执行结果为:Hello 即便只是调用一个函数,也必须先加载这个.py文件,之后再通过Jython包中所定义的类获取、调用这个函数。 如果函数需要参数,在Java中必须先将参数转化为对应的“Python类型”,例如: __call__(newPyInteger(a),newPyInteger(b))a,b的类型为Java中的int型,还有诸如:PyString(Stringstring)、PyList(Iteratoriter)等。 详细可以参考官方的api文档。 包含第三方模块的情况:一个手写识别程序 这是我和舍友合作写的一个小程序,完整代码在这里:,界面上引用了corejava上的一段代码。Python代码是舍友写的,因为在Python程序中使用了第三方的NumPy模块,导致无法通过Jython执行。下面这个方法纯粹是个人思路,没有深入查资料。核心代码如下: importjava.io.*; classPyCaller{ privatestaticfinalStringDATA_SWAP="temp.txt"; privatestaticfinalStringPY_URL=System.getProperty("user.dir")+"\\test.py"; publicstaticvoidwriteImagePath(Stringpath){ PrintWriterpw=null; try{ pw=newPrintWriter(newFileWriter(newFile(DATA_SWAP))); }catch(IOExceptione){ e.printStackTrace(); } pw.print(path); pw.close(); } publicstaticStringreadAnswer(){ BufferedReaderbr; Stringanswer=null; try{ br=newBufferedReader(newFileReader(newFile(DATA_SWAP))); answer=br.readLine(); }catch(FileNotFoundExceptione){ e.printStackTrace(); }catch(IOExceptione){ e.printStackTrace(); } returnanswer; } publicstaticvoidexecPy(){ Processproc=null; try{ proc=Runtime.getRuntime().exec("python"+PY_URL); proc.waitFor(); }catch(IOExceptione){ e.printStackTrace(); }catch(InterruptedExceptione){ e.printStackTrace(); } } //测试码 publicstaticvoidmain(String[]args)throwsIOException,InterruptedException{ writeImagePath("D:\\labs\\mytest\\test.jpg"); execPy(); System.out.println(readAnswer()); } } 实际上就是通过Java执行一个命令行指令。