需要点击网页上的一个按钮打开本机上的文件或者修改本地的配置文件,由于安全的限制浏览器不能直接访问本地文件系统。为了实现这个功能,可以本地启动一个 Web 服务,浏览器访问这个 Web 服务(localhost),然后使用 Web 服务中的代码来访问本地文件系统。为了启动一个 Web 服务,一般我们会选择 Tomcat,Jetty,Websphere 等作为 Web 服务器响应 HTTP 请求,对于我们这么小的一个需求,就有些重量级了,如果能像打开一个普通程序一样打开程序就能启动 Web 服务就好了。
使用 Spark Framework,几行代码,就能启动一个嵌入式的 Web 服务器,默认端口是 4567
,还不需要任何配置,是一个很好的选择
Spark Framework is a simple and lightweight Java web framework built for rapid development. Spark’s intention isn’t to compete with Sinatra, or the dozen of similar web frameworks in different languages, but to provide a pure Java alternative for developers that want to (or are required to), develop their web application in Java. Spark is built around
Java 8's
lambda philosophy, which makes a typical Spark application a lot less verbose than most application written in other Java web frameworks.
Spark focuses on being as simple and straight-forward as possible, without the need for cumbersome (XML) configuration, to enable very fast web application development in pure Java with minimal effort. It’s a totally different paradigm when compared to the overuse of annotations for accomplishing pretty trivial stuff seen in other web frameworks.
Gradle 依赖
1 | 'com.sparkjava:spark-core:2.5' |
Web 服务器程序
1 | import static spark.Spark.*; |
测试一
- 运行
HelloSpark
- 访问 http://localhost:4567/hello
访问本地文件
上面的程序启动了本地的 Web 服务,那么接下来就模拟点击网页上的按钮,然后打开本地文件吧
1 | import java.awt.*; |
1 |
|
测试二
- 运行
HelloSpark
- 访问 http://localhost:4567/open-file
- 本地的文件被打开了