1

我使用以下命令在 nix(Linux、AIX、Sunos、HPUX)平台中获取目录列表

命令

ls -latr 

输出

drwxr-xr-x  2 ricky support   4096 Aug 29 11:59 lib 
-rwxrwxrwx  1 ricky support    924 Aug 29 12:00 initservice.sh

cksum命令用于获取 CRC 校验和。

如何在每个文件之后附加 CRC 校验和(包括目录列表),如下所示,在这些 nix(Linux、AIX、Sunos、HPUX)平台中保持以下格式?

drwxr-xr-x  2 ricky support   4096 Aug 29 11:59 lib 
-rwxrwxrwx  1 ricky support    924 Aug 29 12:00 initservice.sh 4287252281

更新说明:没有第三方应用程序,我使用 java/Groovy 将输出最终解析为给定格式,该格式使用 groovy XmlSlurper 形成 xml(生成的 XML 大小约为 5MB)

"permission","hardlink","owner","group","fsize","month","date","time","filename","checksum"

欢迎所有建议!:)

用我的代码更新

但是在这里我正在计算 md5hex,它给出了与md5sum来自 linux 的命令类似的输出。所以它不再cksum是因为我不能使用一些许可问题的jacksum bcz :(

class CheckSumCRC32 {

public def getFileListing(String file){
    def dir = new File(file)
    def filename = null
    def md5sum = null
    def filesize = null
    def lastmodified = null
    def lastmodifiedDate = null
    def lastmodifiedTime = null
    def permission = null
    Format formatter = null
    def list=[]
    if(dir.exists()){
        dir.eachFileRecurse (FileType.FILES) { fname ->
            list << fname
          }
        list.each{fileob->
            try{
                md5sum=getMD5CheckSum(fileob.toString())
                filesize=fileob.length()+"b"
                lastmodified=new Date(fileob.lastModified())
                lastmodifiedDate=lastmodified.format('dd/MM/yyyy')
                formatter=new SimpleDateFormat("hh:mm:ss a")
                lastmodifiedTime=formatter.format(lastmodified)
                permission=getReadPermissions(fileob)+getWritePermissions(fileob)+getExecutePermissions(fileob)
                filename=getRelativePath("E:\\\\temp\\\\recurssive\\\\",fileob.toString())
                println "$filename, $md5sum, $lastmodifiedDate, $filesize, $permission, $lastmodifiedDate, $lastmodifiedTime "
            }
            catch(IOException io){
                println io
            }
            catch(FileNotFoundException fne){
                println fne
            }   
            catch(Exception e){
                println e
            }           
        }
    }       
}

public def getReadPermissions(def file){
    String temp="-"
    if(file.canRead())temp="r"
    return temp
}
public def getWritePermissions(def file){
    String temp="-"
    if(file.canWrite())temp="w"
    return temp
}
public def getExecutePermissions(def file){
    String temp="-"
    if(file.canExecute())temp="x"
    return temp
}
public def getRelativePath(def main, def file){""
    return file.toString().replaceAll(main, "")
}


public static void main(String[] args) {
    CheckSumCRC32 crc = new CheckSumCRC32();
    crc.getFileListing("E:\\temp\\recurssive")
}
}

输出

release.zip, 25f995583144bebff729086ae6ec0eb2, 04/06/2012, 6301510b, rwx, 04/06/2012, 02:46:32 PM 
file\check\release-1.0.zip, 3cc0f2b13778129c0cc41fb2fdc7a85f, 18/07/2012, 11786307b, rwx, 18/07/2012, 04:13:47 PM 
file\Dedicated.mp3, 238f793f0b80e7eacf5fac31d23c65d4, 04/05/2010, 4650908b, rwx, 04/05/2010, 10:45:32 AM 

但我仍然需要一种方法来计算硬链接、所有者和组。我在网上搜索,看起来java7有这个功能,我被 java6 困住了。有什么帮助吗?

4

2 回答 2

1

看看http://www.jonelo.de/java/jacksum/index.html - 据报道提供 cksum - 兼容 CRC32 校验和。

顺便说一句,我尝试使用 java.util.zip.CRC32 来计算校验和,它给出的值与 cksum 不同,因此必须使用稍微不同的算法。

编辑:我试过jacksum,它可以工作,但你必须告诉它使用'cksum'算法——显​​然这crc32不同,jacksum也支持。

于 2012-09-01T22:47:48.193 回答
0

好吧,您可以运行该命令,然后,对于每一行,运行 thecksum并将其附加到该行。

我做了以下事情:

dir = "/home/will"

"ls -latr $dir".execute().in.eachLine { line ->

  // let's omit the first line, which starts with "total"
  if (line =~ /^total/) return

  // for directories, we just print the line
  if (line =~ /^d/) 
  {
    println line
  } 
  else 
  {
    // for files, we split the line by one or more spaces and join 
    // the last pieces to form the filename (there must be a better 
    // way to do this)
    def fileName = line.split(/ {1,}/)[8..-1].join("")

    // now we get the first part of the cksum
    def cksum = "cksum $dir/$fileName".execute().in.text.split(/ {1,}/)[0]

    // concat the result to the original line and print it
    println "$line $cksum"
  }
}

特别注意我的“必须有更好的方法来做到这一点”。

于 2012-09-01T18:37:07.503 回答