作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我是 java 的新手,我想在用户进入域时构建站点地图生成器。嗯,我正在寻找源代码和 API 来执行此操作。如果有人能提供帮助,我将不胜感激。
最佳答案
需要下载
JDK 6
sitemapgen4j-1.0.1.jar
示例:
import java.io.File;
import java.net.MalformedURLException;
import java.util.Date;
import com.redfin.sitemapgenerator.ChangeFreq;
import com.redfin.sitemapgenerator.WebSitemapGenerator;
import com.redfin.sitemapgenerator.WebSitemapUrl;
public class SitemapGenerator {
public static void main(String[] args) throws MalformedURLException {
WebSitemapGenerator webSitemapGenerator = WebSitemapGenerator.builder("http://www.example.com", new File("C:\\sitemap"))
.gzip(true).build();
WebSitemapUrl webSitemapUrl = new WebSitemapUrl.Options("http://www.example.com/test1.html")
.lastMod(new Date()).priority(1.0).changeFreq(ChangeFreq.HOURLY).build();
webSitemapGenerator.addUrl(webSitemapUrl);
webSitemapGenerator.addUrl("http://www.example.com/test2.html");
webSitemapGenerator.write();
}
}
关于java - 如何通过 java 为给定域生成站点地图 有哪些可用的 API 或源代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11014934/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!