com.google.gwt.dev.util.Util.readURLAsString()方法的使用及代码示例

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

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

Util.readURLAsString介绍

暂无

代码示例

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. @Override
  2. public void prepare(TreeLogger logger, ResourceContext context,
  3. ClientBundleRequirements requirements, JMethod method)
  4. throws UnableToCompleteException {
  5. URL[] urls = ResourceGeneratorUtil.findResources(logger, context, method);
  6. if (urls.length != 1) {
  7. logger.log(TreeLogger.ERROR, "Exactly one resource must be specified",
  8. null);
  9. throw new UnableToCompleteException();
  10. }
  11. URL resource = urls[0];
  12. String toWrite = Util.readURLAsString(resource);
  13. // This de-duplicates strings in the bundle.
  14. if (!hashes.containsKey(toWrite)) {
  15. hashes.put(toWrite, currentIndex++);
  16. if (!first) {
  17. data.append(",\n");
  18. } else {
  19. first = false;
  20. }
  21. data.append('"');
  22. data.append(Generator.escape(toWrite));
  23. data.append('"');
  24. }
  25. // Store the (possibly n:1) mapping of resource function to bundle index.
  26. offsets.put(method.getName(), hashes.get(toWrite));
  27. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. sw.indent();
  2. String toWrite = Util.readURLAsString(resource);

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. @Override
  2. public void prepare(TreeLogger logger, ResourceContext context,
  3. ClientBundleRequirements requirements, JMethod method)
  4. throws UnableToCompleteException {
  5. URL[] urls = ResourceGeneratorUtil.findResources(logger, context, method);
  6. if (urls.length != 1) {
  7. logger.log(TreeLogger.ERROR, "Exactly one resource must be specified",
  8. null);
  9. throw new UnableToCompleteException();
  10. }
  11. URL resource = urls[0];
  12. String toWrite = Util.readURLAsString(resource);
  13. // This de-duplicates strings in the bundle.
  14. if (!hashes.containsKey(toWrite)) {
  15. hashes.put(toWrite, currentIndex++);
  16. if (!first) {
  17. data.append(",\n");
  18. } else {
  19. first = false;
  20. }
  21. data.append('"');
  22. data.append(Generator.escape(toWrite));
  23. data.append('"');
  24. }
  25. // Store the (possibly n:1) mapping of resource function to bundle index.
  26. offsets.put(method.getName(), hashes.get(toWrite));
  27. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. @Override
  2. public void prepare(TreeLogger logger, ResourceContext context,
  3. ClientBundleRequirements requirements, JMethod method)
  4. throws UnableToCompleteException {
  5. URL[] urls = ResourceGeneratorUtil.findResources(logger, context, method);
  6. if (urls.length != 1) {
  7. logger.log(TreeLogger.ERROR, "Exactly one resource must be specified",
  8. null);
  9. throw new UnableToCompleteException();
  10. }
  11. URL resource = urls[0];
  12. String toWrite = Util.readURLAsString(resource);
  13. // This de-duplicates strings in the bundle.
  14. if (!hashes.containsKey(toWrite)) {
  15. hashes.put(toWrite, currentIndex++);
  16. if (!first) {
  17. data.append(",\n");
  18. } else {
  19. first = false;
  20. }
  21. data.append('"');
  22. data.append(Generator.escape(toWrite));
  23. data.append('"');
  24. }
  25. // Store the (possibly n:1) mapping of resource function to bundle index.
  26. offsets.put(method.getName(), hashes.get(toWrite));
  27. }

代码示例来源:origin: laaglu/lib-gwt-svg

  1. String toWrite = Util.readURLAsString(resource);
  2. if (getValidated(method)) {
  3. SVGValidator.validate(toWrite, resource.toExternalForm(), logger, null);

代码示例来源:origin: org.vectomatic/lib-gwt-svg

  1. String toWrite = Util.readURLAsString(resource);
  2. if (getValidated(method)) {
  3. SVGValidator.validate(toWrite, resource.toExternalForm(), logger, null);

代码示例来源:origin: net.wetheinter/gwt-user

  1. Utility.writeTemplateBinaryFile(file, data);
  2. } else {
  3. String data = Util.readURLAsString(url);
  4. Utility.writeTemplateFile(file, data, replacements);

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. Utility.writeTemplateBinaryFile(file, data);
  2. } else {
  3. String data = Util.readURLAsString(url);
  4. Utility.writeTemplateFile(file, data, replacements);

代码示例来源:origin: com.asayama.gwt.angular/gwt-angular-util

  1. String toWrite = Util.readURLAsString(resource);
  2. if (toWrite.length() > MAX_STRING_CHUNK) {
  3. writeLongString(writer, toWrite);

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

  1. String toWrite = Util.readURLAsString(resource);

代码示例来源:origin: com.asayama.gwt/gwt-util

  1. String toWrite = Util.readURLAsString(resource);
  2. if (toWrite.length() > MAX_STRING_CHUNK) {
  3. writeLongString(writer, toWrite);

代码示例来源:origin: com.asayama.gwt/gwt-util

  1. String toWrite = Util.readURLAsString(resource);
  2. if (toWrite.length() > MAX_STRING_CHUNK) {
  3. writeLongString(writer, toWrite);

代码示例来源:origin: org.vectomatic/lib-gwt-svg

  1. String toWrite = Util.readURLAsString(resource);
  2. if (getValidated(method)) {
  3. SVGValidator.validate(toWrite, resource.toExternalForm(), logger, null);

代码示例来源:origin: net.wetheinter/gwt-user

  1. sw.indent();
  2. String toWrite = Util.readURLAsString(resource);

代码示例来源:origin: laaglu/lib-gwt-svg

  1. String toWrite = Util.readURLAsString(resource);
  2. if (getValidated(method)) {
  3. SVGValidator.validate(toWrite, resource.toExternalForm(), logger, null);

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. sw.indent();
  2. String toWrite = Util.readURLAsString(resource);

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

  1. String css = Util.readURLAsString(resource);
  2. logger.log(Type.ERROR, "Error processing " + method.getName(),
  3. null);
  4. if (Util.readURLAsString(resource) == null) {
  5. logger.log(Type.ERROR,
  6. method.getName() + " not found:" + resource.toString(),

代码示例来源:origin: thothbot/parallax

  1. String toWrite = Util.readURLAsString(resource);
  2. if(toWrite.length() > 16383) {
  3. this.writeLongString(sw, toWrite);

相关文章