用Java编写Flash应用 Flash4j

码农软件 · 软件分类 · Flash开发包 · 2019-04-03 20:28:35

软件介绍

Flash4j 可以让你用 Java 语言来编写 Flash 应用,提供数以百种的 UI 控件。你可把它当成是 Adobe Flex 的 Java 语言封装。

示例代码:

Button button = new Button( "Click me" );
button.addEventHandler(MouseEvent.CLICK, new EventHandler() {
             @Override
             public void onEvent(Event event) {
                  Alert.show( "Hello, Flex" , "Greetings" );
             }
});
// center the button
button.setCentered();

本文地址:https://codercto.com/soft/d/2797.html

Effective Java

Effective Java

Joshua Bloch / Addison-Wesley Professional / 2018-1-6 / USD 54.99

The Definitive Guide to Java Platform Best Practices—Updated for Java 9 Java has changed dramatically since the previous edition of Effective Java was published shortly after the release of Jav......一起来看看 《Effective Java》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具