org.apache.shindig.common.uri.UriBuilder.addFragmentParameter()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(9.3k)|赞(0)|评价(0)|浏览(98)

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

UriBuilder.addFragmentParameter介绍

暂无

代码示例

代码示例来源:origin: org.wso2.org.apache.shindig/shindig-common

@Test
public void addTwoFragmentParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .addFragmentParameter("foo", "bar")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world&foo=bar", builder.toString());
}

代码示例来源:origin: com.lmco.shindig/shindig-common

@Test
public void addTwoFragmentParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .addFragmentParameter("foo", "bar")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world&foo=bar", builder.toString());
}

代码示例来源:origin: org.apache.shindig/shindig-common

@Test
public void addIdenticalFragmentParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .addFragmentParameter("hello", "goodbye")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world&hello=goodbye", builder.toString());
}

代码示例来源:origin: org.apache.shindig/shindig-common

@Test
public void addTwoFragmentParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .addFragmentParameter("foo", "bar")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world&foo=bar", builder.toString());
}

代码示例来源:origin: org.gatein.shindig/shindig-common

@Test
public void addIdenticalFragmentParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .addFragmentParameter("hello", "goodbye")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world&hello=goodbye", builder.toString());
}

代码示例来源:origin: apache/shindig

@Test
public void addTwoFragmentParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .addFragmentParameter("foo", "bar")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world&foo=bar", builder.toString());
}

代码示例来源:origin: apache/shindig

@Test
public void addIdenticalFragmentParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .addFragmentParameter("hello", "goodbye")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world&hello=goodbye", builder.toString());
}

代码示例来源:origin: org.gatein.shindig/shindig-common

@Test
public void addTwoFragmentParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .addFragmentParameter("foo", "bar")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world&foo=bar", builder.toString());
}

代码示例来源:origin: org.wso2.org.apache.shindig/shindig-common

@Test
public void addIdenticalFragmentParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .addFragmentParameter("hello", "goodbye")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world&hello=goodbye", builder.toString());
}

代码示例来源:origin: com.lmco.shindig/shindig-common

@Test
public void addIdenticalFragmentParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .addFragmentParameter("hello", "goodbye")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world&hello=goodbye", builder.toString());
}

代码示例来源:origin: apache/shindig

@Test
public void addSingleFragmentParameter() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world", builder.toString());
}

代码示例来源:origin: org.wso2.org.apache.shindig/shindig-common

@Test
public void addSingleFragmentParameter() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world", builder.toString());
}

代码示例来源:origin: org.apache.shindig/shindig-common

@Test
public void addSingleFragmentParameter() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world", builder.toString());
}

代码示例来源:origin: org.gatein.shindig/shindig-common

@Test
public void addSingleFragmentParameter() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world", builder.toString());
}

代码示例来源:origin: com.lmco.shindig/shindig-common

@Test
public void addSingleFragmentParameter() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world", builder.toString());
}

代码示例来源:origin: org.apache.shindig/shindig-common

@Test
public void fragmentParamsAreEscaped() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello world", "foo&bar")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello+world=foo%26bar", builder.toString());
 assertEquals("hello+world=foo%26bar", builder.getFragment());
}

代码示例来源:origin: org.gatein.shindig/shindig-common

@Test
public void fragmentParamsAreEscaped() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello world", "foo&bar")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello+world=foo%26bar", builder.toString());
 assertEquals("hello+world=foo%26bar", builder.getFragment());
}

代码示例来源:origin: org.wso2.org.apache.shindig/shindig-common

@Test
public void fragmentParamsAreEscaped() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello world", "foo&bar")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello+world=foo%26bar", builder.toString());
 assertEquals("hello+world=foo%26bar", builder.getFragment());
}

代码示例来源:origin: apache/shindig

@Test
public void fragmentParamsAreEscaped() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello world", "foo&bar")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello+world=foo%26bar", builder.toString());
 assertEquals("hello+world=foo%26bar", builder.getFragment());
}

代码示例来源:origin: com.lmco.shindig/shindig-common

@Test
public void fragmentParamsAreEscaped() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello world", "foo&bar")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello+world=foo%26bar", builder.toString());
 assertEquals("hello+world=foo%26bar", builder.getFragment());
}

相关文章