Getting Chrome Browser in java Applications

前端 未结 3 1400
野趣味
野趣味 2020-12-31 13:08

Is there a way to get the Chrome browser inside of java applications similar to the way Awesomium works in C++ and C# applications?

3条回答
  •  不知归路
    2020-12-31 14:08

    There is currently no way getting the UI portion into a Java. You should consider just using barebone WebKit + V8 with many JNI calls. You could consider writing a JNA wrapper around those.

    To make your JNA easier, you can wrap Chromium Embedded Framework

提交回复
热议问题