-
在网页中调用本地可执行文件之三(mac os)(run exe from web browser)
在windows 中注册 url protocol ([url]http://www.yihaomen.com/article/other/212.htm[/url]), 已经实现,修改注册表而已,很easy, 然后直接在 浏览器中调用即可。其实在在MAC 中一样可以实现,url protocol 在各种操作系统均可以实现。下面说下 在 MAC 中如何实现。比如我想自己定义一个协议 myprotocol 直接打开 MAIL 发送邮件.点击桌面: Finder
Date: 2012-07-26 View: 1520
-
在网页中调用本地EXE(可执行文件)之二(run exe from web browser)
前几天,在IE,FIREFOX中实现了用JS方式调用本地的可执行文件。地址:www.yihaomen.com/article/js/211.htm
,其实还有另外一种方法,就是 url protocol 的方式来实现。用这种方式实现,任何浏览器都兼容,不会存在只有前面那种只有IE或FIREFOX才行的情况。
都用过QQ,迅雷,电驴,在网页上点击的时候,就会弹出QQ,或者迅雷,电驴的下载界面,用的就是这个原理,在微软的MSDN上也有说明:http://msdn.microsoft.com/en-us/library/aa767914%28v=vs.85%29.aspx 在这里,做一个简单的例子。
1. 先注册URL PROTOCOL, 在windows 下就是注册表:
Date: 2012-07-26 View: 1520
-
Spring Boot Which main class to start
If Spring Boot project contains multiple main classes, Spring Boot will fail to start or packag for deployment.
Date: 2019-08-11 View: 1520
-
Spring Boot non-web application example
In Spring Boot, to create a non-web application, implements CommandLineRunner and override the run method, for example :
Date: 2019-08-11 View: 1520
-
Java ExecutorService examples
In Java, we can use ExecutorService to create a thread pool, and tracks the progress of the asynchronous tasks with Future.
Date: 2019-08-11 View: 1520