Package org.jmule.core.edonkey.packet.tag

Examples of org.jmule.core.edonkey.packet.tag.IntTag


    String fileName = this.getSharingName();
    if (fileName==null) fileName = file.getName();
    Tag tag = new StringTag(FT_FILENAME, fileName);
    tagList.addTag(tag);

    tag = new IntTag(FT_FILESIZE, Convert.longToInt(file.length()));
    tagList.addTag(tag);
  }
View Full Code Here

TOP

Related Classes of org.jmule.core.edonkey.packet.tag.IntTag

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.