为什么这个URI符合RCF 2396标准?

时间:2015-06-14 00:26:58

标签: java uri

我正在为我正在开发的应用程序加载器使用非stringy类型。作为一个错字,我忘了包含特定URI的协议部分。我希望java测试由于URI无效而失败...但是这个语句似乎有用......

body {
  background-color: #cccccc;
  color: #444444;
}

h1 {
  text-align: center;
  font-family: "courier";
}

#explanation {
  text-align: justify;
  font-family: "Times New Roman";
  font-size: 1em;
  text-indent: 3em;
}

code {
  font-family: "courier new";
  font-size: .8em;
  padding: 2px;
  padding-left: 4px;
  padding-right: 4px;
  background-color: #111111;
  color: #aaaaaa;
  border-radius: 2px;
}

#dic-editor {
  width: calc(100% - .86%);
  width: -moz-calc(100% - .86%);
  height: calc(100vh - 1.86em);
  height: -moz-calc(100vh - 1.86em);
  padding: .43%;
  margin: 0;
  margin-bottom: 1em;
  border: none;
  background-color: #111111;
  color: #aaaaaa;
  border-radius: 2px;
  font-size: 1em;
  outline: none;
  resize: none;
  overflow: auto;
}

#input {
  width: calc(43% - .86%);
  width: -moz-calc(43% - .86%);
  height: 40vh;
  float: left;
  padding: .43%;
  margin: 0;
  border: none;
  background-color: #111111;
  color: #aaaaaa;
  border-radius: 2px;
  font-size: 1em;
  outline: none;
  resize: none;
  overflow: auto;
}

#inputB {
  font-family: "courier";
  width: 14%;
  padding: 0;
  margin: 0;
  padding-top: 3px;
  padding-bottom: 3px;
  border: none;
  background-color: #1f1f1f;
  color: #aaaaaa;
  border-radius: 2px;
  font-size: .8em;
  resize: none;
  cursor: pointer;
  outline: none;
}

#inputB:hover {
  background-color: #aaaaaa;
  color: #1f1f1f;
}

#output {
  width: calc(43% - .86%);
  width: -moz-calc(43% - .86%);
  height: 40vh;
  float: right;
  padding: .43%;
  margin: 0;
  border: none;
  background-color: #111111;
  color: #aaaaaa;
  border-radius: 2px;
  font-size: 1em;
  outline: none;
  resize: none;
  overflow: auto;
}

对我来说,使用点作为方案部分没有标准......我认为方案部分总是需要的?

有谁知道为什么?

1 个答案:

答案 0 :(得分:2)

我会将我的评论添加为答案,因为我认为这是正确的:

从Java URI文档:“由RFC 2396中的语法指定,附录A”和附录A允许URI为相对路径,,没有主机名或方案。所以“this.and.that”可能只是一个文件名,如“this.html”(点的有效作为文件元素名称 - 即路径段中的pchars)。