欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

python代碼如何轉jar包

 更新時間:2024年03月28日 08:58:38   作者:灬點點  
這篇文章主要介紹了python代碼如何轉jar包問題,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教

一、安裝

首先需要安裝jython-installer-2.7.1的jar包工具。

下載地址:https://www.jython.org/

二、注意需要默認安裝

三、使用cmd進入jython環(huán)境

3.1、配置環(huán)境變量

3.2、注冊環(huán)境點擊運行jython_regrtest.bat

3.3、最后后使用命令進行轉換,但是只有jython-installer-2.2.0版本才能使用命令進行轉換,由于jython-installer-2.7.0的版本升級,現在直接類型配置文件或者寫在run()或者main()方法中才能運行。 

引入pom.xml

        <dependency>
            <groupId>org.python</groupId>
            <artifactId>jython-standalone</artifactId>
            <version>2.7.0</version>
        </dependency>

java代碼

package com.xxxx.checkandbigdataquery.jpython;

import org.python.core.Py;
import org.python.core.PySystemState;
import org.python.util.PythonInterpreter;

public class HelloPython {

    public static void main(String[] args) {
         test1();
         //test2();
         //test3();
    }

    /**
     * 運行python文件
     */
    public static void test1() {
        PythonInterpreter interpreter = new PythonInterpreter();
        interpreter.execfile("D:/jython2.7.1/test.py");
    }

    /**
     * 運行python 代碼
     */
    public static void test2(){
        PythonInterpreter interpreter = new PythonInterpreter();
        interpreter.exec("print('hello')");
    }

    /**
     * 手動添加第三方庫路徑
     * 把第三方庫文件夾放到執(zhí)行的.py腳本同級目錄
     */
    public static  void test3(){
        PySystemState sys = Py.getSystemState();
        System.out.println(sys.path.toString());
        sys.path.add("F:\\Python27\\Lib\\site-packages\\jieba");
    }
}

package com.xxxx.checkandbigdataquery.jpython;

import org.python.core.PyFunction;
import org.python.core.PyInteger;
import org.python.core.PyObject;
import org.python.util.PythonInterpreter;

public class Fibo {

    public static void main(String[] args) {
        PythonInterpreter interpreter = new PythonInterpreter();
        interpreter = new PythonInterpreter();
        interpreter.execfile("./pythonSrc/fibo.py");
        PyFunction function = (PyFunction)interpreter.get("fib",PyFunction.class);
        PyObject o = function.__call__(new PyInteger(8));
        System.out.println(o.toString());
    }
}

package com.xxxx.checkandbigdataquery.jpython;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Cmd {

    public static void main(String[] args) throws IOException, InterruptedException {
        String[] arguments = new String[] { "python", "D:\\jython2.7.1\\time.py", "huzhiwei", "25" };
        try {
            Process process = Runtime.getRuntime().exec(arguments);
            BufferedReader in = new BufferedReader(new InputStreamReader(process.getInputStream()));
            String line;
            while ((line = in.readLine()) != null) {
                System.out.println(line);
            }
            in.close();
            int re = process.waitFor();
            System.out.println(re);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

}

py代碼

#coding:utf-8
def countNum(param):
    reslut = ""
    if(param[1]+param[2]) == 0:
        reslut ="除數不能為0"
    else:
        res = param[0]/(param[1]+param[2])
        reslut ="this count: "+str(res)
    print(reslut)

if __name__=="__main__":
    countNum([10,2,3])
#!/usr/bin/python
#coding=utf-8

#定義一個方法
def my_test(name, age):
    print("name: "+str(name))
    print(age)  #str()防解碼出錯
    return "success"
#主程序
#sys.argv[1]獲取cmd輸入的參數
my_test(sys.argv[1], sys.argv[2])

四、解決問題

總結

以上為個人經驗,希望能給大家一個參考,也希望大家多多支持腳本之家。

相關文章

  • Python中getattr函數和hasattr函數作用詳解

    Python中getattr函數和hasattr函數作用詳解

    這篇文章主要介紹了Python中getattr函數和hasattr函數作用的相關知識,非常不錯具有參考借鑒價值,需要的朋友可以參考下
    2016-06-06
  • Python之numpy.random.seed()和numpy.random.RandomState()區(qū)別及說明

    Python之numpy.random.seed()和numpy.random.RandomState()區(qū)別及說明

    這篇文章主要介紹了Python之numpy.random.seed()和numpy.random.RandomState()區(qū)別及說明,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教
    2017-10-10
  • Python常用的模塊和簡單用法

    Python常用的模塊和簡單用法

    這篇文章主要給大家介紹Python#常用的模塊和簡單用法,以random 隨機模塊展開話題,感興趣的小伙伴可以參考一下
    2021-10-10
  • Python安裝與基本數據類型教程詳解

    Python安裝與基本數據類型教程詳解

    這篇文章主要介紹了Python安裝與基本數據類型教程詳細講解,本文圖文并茂給大家介紹的非常詳細,具有一定的參考借鑒價值 ,需要的朋友可以參考下
    2019-05-05
  • 基于Python打造賬號共享瀏覽器功能

    基于Python打造賬號共享瀏覽器功能

    這篇文章主要介紹了基于Python打造賬號共享瀏覽器功能,本文圖文并茂給大家介紹的非常詳細,具有一定的參考借鑒價值,需要的朋友可以參考下
    2019-05-05
  • Python 批量讀取文件中指定字符的實現

    Python 批量讀取文件中指定字符的實現

    這篇文章主要介紹了Python 批量讀取文件中指定字符的實現,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2020-03-03
  • 使用python實現3D聚類圖示例代碼

    使用python實現3D聚類圖示例代碼

    這篇文章主要介紹了使用python實現3D聚類圖效果,本文通過實例代碼給大家介紹的非常詳細,感興趣的朋友跟隨小編一起看看吧
    2024-08-08
  • Python Django框架介紹之模板標簽及模板的繼承

    Python Django框架介紹之模板標簽及模板的繼承

    今天給大家?guī)鞵ython Django框架的相關知識,文中對模板標簽及模板的繼承介紹的非常詳細,對正在學習python的小伙伴們有很好地幫助,需要的朋友可以參考下
    2021-05-05
  • 教你用Python實現短信驗證碼的發(fā)送

    教你用Python實現短信驗證碼的發(fā)送

    當我們在注冊一個網頁時,有的網頁會讓必須要短信驗證、郵箱驗證,才可以進行賬號的注冊,下面這篇文章主要給大家介紹了關于用Python實現短信驗證碼發(fā)送的相關資料,需要的朋友可以參考下
    2022-12-12
  • 如何在Python中將字符串轉換為集合

    如何在Python中將字符串轉換為集合

    這篇文章主要介紹了如何在Python中將字符串轉換為集合,我們使用生成器表達式來迭代列表,并使用 int() 類將每個項目轉換為整數,本文給大家介紹的非常詳細,需要的朋友可以參考下
    2023-03-03

最新評論