What is the best way to convert an existing php class into Java?

前端 未结 15 1283
梦毁少年i
梦毁少年i 2021-02-09 14:07

I have been tasked with converting several php classes into java classes, which is quickly becoming a nightmare for me. I understand the basic language structure, it being simil

15条回答
  •  面向向阳花
    2021-02-09 15:05

    I can not imagine that a tool for this is existing. I did something similar with C++ und Java. It is a pain, but the best is to impement it by your self.

    Or write it in C and create a dll with a jni warpper to call it from Java. This should be the fastet way.

提交回复
热议问题