• 大小: 7.07MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-14
  • 语言: Java
  • 标签: Thinking  in  Java4  

资源简介

自己导入可用的源码分享,亲测可用,直接打开IEDA导入java工程即可.

资源截图

代码片段和文件信息

#!/usr/bin/python
“““
DEclipse.py by Bruce Eckel for Thinking in Java 4e

Undoes the effect of Eclipse.py so that Ant can be used
again to build the code tree.

You must have Python 2.3 installed to run this program. See www.python.org.
“““
import os

for path dirs files in os.walk(‘.‘):
    for file in files:
        if file.endswith(“.java“):
            filepath = path + os.sep + file
            code = open(filepath).readlines()
            found = False
            for n line in enumerate(code):
                if line.find(“ /* Added by Eclipse.py */“) != -1:
                    del code[n]
            open(filepath ‘w‘).writelines(code)


print “Project ready to be built with Ant.“
       

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-09-28 11:07  TIJ4\
     文件         748  2017-05-04 17:10  TIJ4\.classpath
     文件         372  2009-08-19 09:42  TIJ4\.classpath.bak
     目录           0  2017-12-28 09:19  TIJ4\.git\
     文件          15  2017-09-28 11:08  TIJ4\.git\COMMIT_EDITMSG
     文件         305  2017-09-28 11:09  TIJ4\.git\config
     文件          73  2017-09-28 11:07  TIJ4\.git\description
     文件          23  2017-09-28 11:07  TIJ4\.git\HEAD
     目录           0  2017-09-28 11:07  TIJ4\.git\hooks\
     文件         478  2017-09-28 11:07  TIJ4\.git\hooks\applypatch-msg.sample
     文件         896  2017-09-28 11:07  TIJ4\.git\hooks\commit-msg.sample
     文件         189  2017-09-28 11:07  TIJ4\.git\hooks\post-update.sample
     文件         424  2017-09-28 11:07  TIJ4\.git\hooks\pre-applypatch.sample
     文件        1642  2017-09-28 11:07  TIJ4\.git\hooks\pre-commit.sample
     文件        1348  2017-09-28 11:07  TIJ4\.git\hooks\pre-push.sample
     文件        4951  2017-09-28 11:07  TIJ4\.git\hooks\pre-rebase.sample
     文件         544  2017-09-28 11:07  TIJ4\.git\hooks\pre-receive.sample
     文件        1239  2017-09-28 11:07  TIJ4\.git\hooks\prepare-commit-msg.sample
     文件        3610  2017-09-28 11:07  TIJ4\.git\hooks\update.sample
     文件       96745  2017-09-28 11:08  TIJ4\.git\index
     目录           0  2017-09-28 11:07  TIJ4\.git\info\
     文件         240  2017-09-28 11:07  TIJ4\.git\info\exclude
     目录           0  2017-09-28 11:08  TIJ4\.git\logs\
     文件         171  2017-09-28 11:08  TIJ4\.git\logs\HEAD
     目录           0  2017-09-28 11:09  TIJ4\.git\logs\refs\
     目录           0  2017-09-28 11:08  TIJ4\.git\logs\refs\heads\
     文件         171  2017-09-28 11:08  TIJ4\.git\logs\refs\heads\master
     目录           0  2017-09-28 11:09  TIJ4\.git\logs\refs\remotes\
     目录           0  2017-09-28 11:09  TIJ4\.git\logs\refs\remotes\origin\
     文件         153  2017-09-28 11:09  TIJ4\.git\logs\refs\remotes\origin\master
     目录           0  2017-09-28 11:08  TIJ4\.git\objects\
............此处省略2393个文件信息

评论

共有 条评论