Admin
注册时间: 02/09/2015 15:53:01
文章: 52
离线
|
Current version:5.16-b4623
Release date: 2019/06/21
limax-5.16-b4623 (2019/06/21)
1. Fix the URL special character problem in the http request path. For example, if the file name has a space, when tracking this problem, the java.net.URI has the following semantic flaws:
URI uri0 = URI.create("/abc%20%E9%94%99%E8%AF%AF");
URI uri1 = new URI(null, null, "/abc error", null);
URI uri2 = URI.create(uri1.toASCIIString());
System.out.println(uri0.equals(uri1));
System.out.println(uri0.equals(uri2));
Obviously, uri0, uri1, uri2 all point to the same path, but the first line outputs false and the second line outputs true.
2. Add limax.util.Promise.java to simplify asynchronous process management, consistent with the Promise functionality provided after ES6, as described in the javascript manual.
3. Provide a simplified version of au.
|