byte [] attribute = new byte [string.length + 2];
attribute[0] = GlobalToken.STR_I;
System.arraycopy(string, 0, attribute, 1, string.length);
return attribute;
} catch (UnsupportedEncodingException e) {
throw new WBSAXException(
exceptionLocalizer.format(
"url-ascii-encoding-error"),
e);
}
} else {