⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 directoryview.java

📁 cwbbs 云网论坛源码
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
            boolean isShowed = false;            Iterator ir = UprightLineNodes.iterator();            while (ir.hasNext()) {                UprightLineNode node = (UprightLineNode) ir.next();                                if (node.getLayer() == k) {                    node.show(out, "images/i_plus-2.gif");                    if (node.getCount() == 0) {                        UprightLineNodes.remove(node);                                            }                    isShowed = true;                    break;                }            }            if (!isShowed)                out.println("<img src='' width=20 height=1>");        }        if (leaf.getCode().equals(rootLeaf.getCode())) {             out.println("<img onClick=\"ShowChild(this, '" + tableid + "')\" src='images/i_puls-root.gif' align='absmiddle'><img src='images/folder_01.gif' align='absmiddle'>");        } else {            if (isLastChild) {                 if (childcount > 0)                    out.println("<img onClick=\"ShowChild(this, '" + tableid + "')\" src='images/i_plus2-2.gif' align='absmiddle'><img src='images/folder_01.gif' align='absmiddle'>");                else                    out.println("<img src='images/i_plus-2-3.gif' align='absmiddle'><img src='images/folder_01.gif' align='absmiddle'>");            } else {                 if (childcount > 0)                    out.println("<img onClick=\"ShowChild(this, '" + tableid + "')\" src='images/i_plus2-1.gif' align='absmiddle'><img src='images/folder_01.gif' align='absmiddle'>");                else                    out.println("<img src='images/i_plus-2-2.gif' align='absmiddle'><img src='images/folder_01.gif' align='absmiddle'>");            }        }        if (leaf.getType() == leaf.TYPE_LIST) {            out.print(name);        }        else if (leaf.getType() == leaf.TYPE_NONE) {            out.print(name);        }        out.print("     </td><td width='15%' align=right nowrap>");        if (!leaf.getCode().equals("root")) {                                                                if (leaf.getType() == leaf.TYPE_LIST)                out.print("换客栏目列表&nbsp;");            else                out.print("分类&nbsp;");                        out.print(                    "<a target=dirbottomFrame href='catalog_bottom.jsp?parent_code=" +                    StrUtil.UrlEncode(code, "utf-8") + "&parent_name=" +                    StrUtil.UrlEncode(name, "utf-8") +                    "&op=AddChild'>添子目录</a>&nbsp;");            out.print(                    "<a target='dirbottomFrame' href='catalog_bottom.jsp?op=modify&code=" +                    StrUtil.UrlEncode(code, "utf-8") + "&name=" +                    StrUtil.UrlEncode(name, "utf-8") + "&description=" +                    StrUtil.UrlEncode(description, "utf-8") + "'>修改</a>&nbsp;");            out.print(                    "<a target=_self href=# onClick=\"if (window.confirm('您确定要删除" +                    name +                    "吗?')) window.location.href='catalog_top.jsp?op=del&root_code=" + StrUtil.UrlEncode(rootLeaf.getCode()) + "&delcode=" +                    StrUtil.UrlEncode(code, "utf-8") + "'\">删除</a>&nbsp;");            out.print("<a href='catalog_top.jsp?op=move&direction=up&root_code=" + StrUtil.UrlEncode(rootLeaf.getCode()) + "&code=" +                      StrUtil.UrlEncode(code, "utf-8") + "'>上移</a>&nbsp;");            out.print("<a href='catalog_top.jsp?op=move&direction=down&root_code=" + StrUtil.UrlEncode(rootLeaf.getCode()) + "&code=" +                      StrUtil.UrlEncode(code, "utf-8") + "'>下移</a>&nbsp;");            out.print("<a href='catalog_top.jsp?root_code=" +                      StrUtil.UrlEncode(code, "utf-8") + "'>管理</a>");        }        out.println("  </td></tr></tbody></table>");    }    void ShowLeafAsOption(JspWriter out, Leaf leaf, int rootlayer)                  throws Exception {        String code = leaf.getCode();        String name = leaf.getName();        int layer = leaf.getLayer();        String description = leaf.getDescription();        String blank = "";        int d = layer-rootlayer;        for (int i=0; i<d; i++) {            blank += " ";        }        if (leaf.getChildCount()>0) {            if (leaf.getType()==leaf.TYPE_LIST)                out.print("<option value='" + code + "' style='COLOR: #0005ff'>" + blank + "╋ " + name + "</option>");            else                out.print("<option value='" + Leaf.TYPE_NONE_OPTION_VALUE +"'>" + blank + "╋ " + name + "</option>");        }        else {            if (leaf.getType()==leaf.TYPE_LIST)                out.print("<option value=\"" + code + "\" style='COLOR: #0005ff'>" + blank + "├『" + name +                      "』</option>");            else                out.print("<option value='" + Leaf.TYPE_NONE_OPTION_VALUE + "'>" + blank + "├『" + name +                      "』</option>");        }    }    public void ShowLeafAsOptionToString(StringBuffer sb, Leaf leaf, int rootlayer)                  throws Exception {        String code = leaf.getCode();        String name = leaf.getName();        int layer = leaf.getLayer();        String description = leaf.getDescription();        String blank = "";        int d = layer-rootlayer;        for (int i=0; i<d; i++) {            blank += " ";        }        if (leaf.getChildCount()>0) {            if (leaf.getType()==leaf.TYPE_LIST)                sb.append("<option value='" + code + "' style='COLOR: #0005ff'>" + blank + "╋ " + name + "</option>");            else                sb.append("<option value='" + Leaf.TYPE_NONE_OPTION_VALUE + "'>" + blank + "╋ " + name + "</option>");        }        else {            if (leaf.getType()==leaf.TYPE_LIST)                sb.append("<option value=\"" + code + "\" style='COLOR: #0005ff'>" + blank + "├『" + name +                      "』</option>");            else                sb.append("<option value='" + Leaf.TYPE_NONE_OPTION_VALUE + "'>" + blank + "├『" + name +                      "』</option>");        }    }        public void ShowDirectoryAsOptions(JspWriter out, Leaf leaf, int rootlayer) throws Exception {        ShowLeafAsOption(out, leaf, rootlayer);        Directory dir = new Directory();        Vector children = dir.getChildren(leaf.getCode());        int size = children.size();        if (size == 0)            return;        int i = 0;        Iterator ri = children.iterator();        while (ri.hasNext()) {            Leaf childlf = (Leaf) ri.next();            ShowDirectoryAsOptions(out, childlf, rootlayer);        }    }        public void ShowDirectoryAsOptionsToString(StringBuffer sb, Leaf leaf, int rootlayer) throws Exception {        ShowLeafAsOptionToString(sb, leaf, rootlayer);        Directory dir = new Directory();        Vector children = dir.getChildren(leaf.getCode());        int size = children.size();        if (size == 0)            return;        int i = 0;        Iterator ri = children.iterator();        while (ri.hasNext()) {            Leaf childlf = (Leaf) ri.next();            ShowDirectoryAsOptionsToString(sb, childlf, rootlayer);        }    }        void ShowLeafAsOptionWithCode(JspWriter out, Leaf leaf, int rootlayer)                  throws Exception {        String code = leaf.getCode();        String name = leaf.getName();        int layer = leaf.getLayer();        String description = leaf.getDescription();        String blank = "";        int d = layer-rootlayer;        for (int i=0; i<d; i++) {            blank += " ";        }        out.print("<option value='" + code + "'>" + blank + "╋ " + name + "</option>");    }        public void ShowDirectoryAsOptionsWithCode(JspWriter out, Leaf leaf, int rootlayer) throws Exception {        ShowLeafAsOptionWithCode(out, leaf, rootlayer);        Directory dir = new Directory();        Vector children = dir.getChildren(leaf.getCode());        int size = children.size();        if (size == 0)            return;        int i = 0;        Iterator ri = children.iterator();        while (ri.hasNext()) {            Leaf childlf = (Leaf) ri.next();            ShowDirectoryAsOptionsWithCode(out, childlf, rootlayer);        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -