java.net.URLConnection.getHeaderFieldDate()方法的使用及代码示例

x33g5p2x  于2022-01-31 转载在 其他  
字(6.8k)|赞(0)|评价(0)|浏览(213)

本文整理了Java中java.net.URLConnection.getHeaderFieldDate()方法的一些代码示例,展示了URLConnection.getHeaderFieldDate()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。URLConnection.getHeaderFieldDate()方法的具体详情如下:
包路径:java.net.URLConnection
类名称:URLConnection
方法名:getHeaderFieldDate

URLConnection.getHeaderFieldDate介绍

[英]Returns the specified header value as a date in milliseconds since January 1, 1970 GMT. Returns the defaultValue if no such header field could be found.
[中]从1970年1月1日GMT开始以毫秒为单位返回指定的标头值。如果找不到此类标头字段,则返回defaultValue。

代码示例

代码示例来源:origin: robovm/robovm

  1. /**
  2. * Returns the timestamp when this response will be expired in milliseconds
  3. * since January 1, 1970 GMT or {@code 0} if this timestamp is unknown.
  4. *
  5. * @return the value of the response header field {@code expires}.
  6. */
  7. public long getExpiration() {
  8. return getHeaderFieldDate("Expires", 0);
  9. }

代码示例来源:origin: robovm/robovm

  1. /**
  2. * Returns the timestamp when this response has been sent as a date in
  3. * milliseconds since January 1, 1970 GMT or {@code 0} if this timestamp is
  4. * unknown.
  5. *
  6. * @return the sending timestamp of the current response.
  7. */
  8. public long getDate() {
  9. return getHeaderFieldDate("Date", 0);
  10. }

代码示例来源:origin: robovm/robovm

  1. /**
  2. * Returns the value of the response header field {@code last-modified} or
  3. * {@code 0} if this value is not set.
  4. *
  5. * @return the value of the {@code last-modified} header field.
  6. */
  7. public long getLastModified() {
  8. if (lastModified != -1) {
  9. return lastModified;
  10. }
  11. return lastModified = getHeaderFieldDate("Last-Modified", 0);
  12. }

代码示例来源:origin: robovm/robovm

  1. /**
  2. * Returns the date value in milliseconds since {@code 01.01.1970, 00:00h}
  3. * corresponding to the header field {@code field}. The {@code defaultValue}
  4. * will be returned if no such field can be found in the response header.
  5. *
  6. * @param field
  7. * the header field name.
  8. * @param defaultValue
  9. * the default value to use if the specified header field wont be
  10. * found.
  11. * @return the header field represented in milliseconds since January 1,
  12. * 1970 GMT.
  13. */
  14. @Override
  15. public long getHeaderFieldDate(String field, long defaultValue) {
  16. return super.getHeaderFieldDate(field, defaultValue);
  17. }

代码示例来源:origin: org.netbeans.api/org-openide-filesystems

  1. public @Override long getHeaderFieldDate(String name, long Default) {
  2. if (name.equalsIgnoreCase("last-modified")) { // NOI18N
  3. try {
  4. connect();
  5. return fo.lastModified().getTime();
  6. } catch (IOException e) {
  7. }
  8. }
  9. return super.getHeaderFieldDate(name, Default);
  10. }

代码示例来源:origin: MobiVM/robovm

  1. /**
  2. * Returns the timestamp when this response will be expired in milliseconds
  3. * since January 1, 1970 GMT or {@code 0} if this timestamp is unknown.
  4. *
  5. * @return the value of the response header field {@code expires}.
  6. */
  7. public long getExpiration() {
  8. return getHeaderFieldDate("Expires", 0);
  9. }

代码示例来源:origin: ibinti/bugvm

  1. /**
  2. * Returns the timestamp when this response will be expired in milliseconds
  3. * since January 1, 1970 GMT or {@code 0} if this timestamp is unknown.
  4. *
  5. * @return the value of the response header field {@code expires}.
  6. */
  7. public long getExpiration() {
  8. return getHeaderFieldDate("Expires", 0);
  9. }

代码示例来源:origin: com.jtransc/jtransc-rt

  1. /**
  2. * Returns the timestamp when this response has been sent as a date in
  3. * milliseconds since January 1, 1970 GMT or {@code 0} if this timestamp is
  4. * unknown.
  5. *
  6. * @return the sending timestamp of the current response.
  7. */
  8. public long getDate() {
  9. return getHeaderFieldDate("Date", 0);
  10. }

代码示例来源:origin: com.gluonhq/robovm-rt

  1. /**
  2. * Returns the value of the response header field {@code last-modified} or
  3. * {@code 0} if this value is not set.
  4. *
  5. * @return the value of the {@code last-modified} header field.
  6. */
  7. public long getLastModified() {
  8. if (lastModified != -1) {
  9. return lastModified;
  10. }
  11. return lastModified = getHeaderFieldDate("Last-Modified", 0);
  12. }

代码示例来源:origin: MobiVM/robovm

  1. /**
  2. * Returns the timestamp when this response has been sent as a date in
  3. * milliseconds since January 1, 1970 GMT or {@code 0} if this timestamp is
  4. * unknown.
  5. *
  6. * @return the sending timestamp of the current response.
  7. */
  8. public long getDate() {
  9. return getHeaderFieldDate("Date", 0);
  10. }

代码示例来源:origin: MobiVM/robovm

  1. /**
  2. * Returns the value of the response header field {@code last-modified} or
  3. * {@code 0} if this value is not set.
  4. *
  5. * @return the value of the {@code last-modified} header field.
  6. */
  7. public long getLastModified() {
  8. if (lastModified != -1) {
  9. return lastModified;
  10. }
  11. return lastModified = getHeaderFieldDate("Last-Modified", 0);
  12. }

代码示例来源:origin: ibinti/bugvm

  1. /**
  2. * Returns the timestamp when this response has been sent as a date in
  3. * milliseconds since January 1, 1970 GMT or {@code 0} if this timestamp is
  4. * unknown.
  5. *
  6. * @return the sending timestamp of the current response.
  7. */
  8. public long getDate() {
  9. return getHeaderFieldDate("Date", 0);
  10. }

代码示例来源:origin: ibinti/bugvm

  1. /**
  2. * Returns the value of the response header field {@code last-modified} or
  3. * {@code 0} if this value is not set.
  4. *
  5. * @return the value of the {@code last-modified} header field.
  6. */
  7. public long getLastModified() {
  8. if (lastModified != -1) {
  9. return lastModified;
  10. }
  11. return lastModified = getHeaderFieldDate("Last-Modified", 0);
  12. }

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

  1. /**
  2. * Returns the timestamp when this response will be expired in milliseconds
  3. * since January 1, 1970 GMT or {@code 0} if this timestamp is unknown.
  4. *
  5. * @return the value of the response header field {@code expires}.
  6. */
  7. public long getExpiration() {
  8. return getHeaderFieldDate("Expires", 0);
  9. }

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

  1. /**
  2. * Returns the value of the response header field {@code last-modified} or
  3. * {@code 0} if this value is not set.
  4. *
  5. * @return the value of the {@code last-modified} header field.
  6. */
  7. public long getLastModified() {
  8. if (lastModified != -1) {
  9. return lastModified;
  10. }
  11. return lastModified = getHeaderFieldDate("Last-Modified", 0);
  12. }

代码示例来源:origin: org.apidesign.bck2brwsr/emul

  1. /**
  2. * Returns the value of the <code>expires</code> header field.
  3. *
  4. * @return the expiration date of the resource that this URL references,
  5. * or 0 if not known. The value is the number of milliseconds since
  6. * January 1, 1970 GMT.
  7. * @see java.net.URLConnection#getHeaderField(java.lang.String)
  8. */
  9. public long getExpiration() {
  10. return getHeaderFieldDate("expires", 0);
  11. }

代码示例来源:origin: com.bugvm/bugvm-rt

  1. /**
  2. * Returns the timestamp when this response has been sent as a date in
  3. * milliseconds since January 1, 1970 GMT or {@code 0} if this timestamp is
  4. * unknown.
  5. *
  6. * @return the sending timestamp of the current response.
  7. */
  8. public long getDate() {
  9. return getHeaderFieldDate("Date", 0);
  10. }

代码示例来源:origin: com.bugvm/bugvm-rt

  1. /**
  2. * Returns the timestamp when this response will be expired in milliseconds
  3. * since January 1, 1970 GMT or {@code 0} if this timestamp is unknown.
  4. *
  5. * @return the value of the response header field {@code expires}.
  6. */
  7. public long getExpiration() {
  8. return getHeaderFieldDate("Expires", 0);
  9. }

代码示例来源:origin: org.netbeans.modules/org-netbeans-modules-debugger-jpda-js

  1. public @Override long getHeaderFieldDate(String name, long Default) {
  2. if (name.equalsIgnoreCase("last-modified")) { // NOI18N
  3. try {
  4. connect();
  5. return fo.lastModified().getTime();
  6. } catch (IOException e) {
  7. }
  8. }
  9. return super.getHeaderFieldDate(name, Default);
  10. }

代码示例来源:origin: octo-online/reactive-audit

  1. @Test(expected = NetworkReactiveAuditException.class)
  2. public void getHeaderFieldDate()
  3. throws IOException
  4. {
  5. Assume.assumeTrue(IOTestTools.isNetworkConnected());
  6. ReactiveAudit.off.commit();
  7. URLConnection conn = new URL("http://" + HOST + ":" + PORT).openConnection();
  8. TestTools.strict.commit();
  9. conn.getHeaderFieldDate("expiration", 0);
  10. }

相关文章

URLConnection类方法