本文整理了Java中org.dspace.content.Bitstream.getSource()
方法的一些代码示例,展示了Bitstream.getSource()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Bitstream.getSource()
方法的具体详情如下:
包路径:org.dspace.content.Bitstream
类名称:Bitstream
方法名:getSource
[英]Get the source of this bitstream - typically the filename with path information (if originally provided) or the name of the tool that generated this bitstream
[中]获取此位流的源-通常是包含路径信息的文件名(如果最初提供)或生成此位流的工具的名称
代码示例来源:origin: DSpace/DSpace
buf.append(msg("size")).append(" = ").append(info.getSizeBytes())
.append("\n");
buf.append(msg("source")).append(" = ").append(info.getSource())
.append("\n");
buf.append(msg("checksum")).append(" = ").append(
代码示例来源:origin: DSpace/DSpace
newBitstream.setDescription(context, bitstream.getDescription());
newBitstream.setFormat(context, bitstream.getFormat(context));
newBitstream.setSource(context, bitstream.getSource());
newBitstream.setUserFormatDescription(context, bitstream
.getUserFormatDescription());
代码示例来源:origin: DSpace/DSpace
oname = bitstream.getSource();
代码示例来源:origin: org.dspace/dspace-xmlui-api
validityKey.append(bitstream.getSequenceID());
validityKey.append(bitstream.getName());
validityKey.append(bitstream.getSource());
validityKey.append(bitstream.getDescription());
validityKey.append(bitstream.getChecksum());
代码示例来源:origin: DSpace/DSpace
LOG.info(msg("user-format-description") + ": "
+ bitstream.getUserFormatDescription());
LOG.info(msg("source") + ": " + bitstream.getSource());
LOG
.info(msg("checksum-algorithm") + ": "
代码示例来源:origin: DSpace/DSpace
dc.add(makeDC("title", null, bsName));
String bsSource = bitstream.getSource();
if (bsSource != null) {
dc.add(makeDC("title", "alternative", bsSource));
代码示例来源:origin: DSpace/DSpace
String oname = bit.getSource();
String name = bit.getName();
String description = bit.getDescription();
内容来源于网络,如有侵权,请联系作者删除!