• 软件测试技术
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘

字号: | 推荐给好友 上一篇 | 下一篇

动态调用动态语言,第 2 部分: 在运行时寻找、执行和修改脚本

发布: 2008-6-30 14:55 | 作者: 不详 | 来源: 领测软件测试网编辑整理 | 查看: 24次 | 进入软件测试论坛讨论

领测软件测试网

+MzVD2L mO t6^

!By$lsiOX0D    /** Returns files with a '.' other than as the first or last character. */软件测试技术门户)r-wlpSU!U MQb9F
    private static File[] getScriptFiles(File directory) {软件测试技术门户rs1SQt
        return directory.listFiles(new FilenameFilter() {
O(\ i{g.O            public boolean accept(File dir, String name) {
:w6t;ts\W:Y&B4u                int indexOfDot = name.indexOf('.');
a*M C$f{,g'cEA                // Ignore files w/o a dot, or with dot as first or last char.软件测试技术门户 ml3C"MJ&x!z
                if (indexOfDot < 1 || indexOfDot == (name.length() - 1)) {软件测试技术门户 B'i;~x\w#v%x
                    return false;
yNy4Q[2LA                } else {软件测试技术门户z [ gU2~%? ii#A(_g
                    return true;软件测试技术门户y Wk?h} u p!\b
                }
j ex|;T%O