StringBuffer imgStr = new StringBuffer(); StringBuffer thePics1 = new StringBuffer(); StringBuffer theLinks1 = new StringBuffer(); StringBuffer theTexts1 = new StringBuffer();
时间: 2024-02-04 20:03:08 浏览: 60
这段代码定义了四个字符串缓冲区变量:imgStr、thePics1、theLinks1和theTexts1。这些缓冲区变量用于存储动态生成的HTML代码。其中imgStr用于保存最终生成的HTML代码,thePics1、theLinks1和theTexts1用于存储图片地址、链接和文本信息,这些信息将被用于生成图片轮播器的HTML标签代码。
相关问题
public String DynamicImage(String categoryid,int cut,int width,int height){ StringBuffer imgStr = new StringBuffer(); StringBuffer thePics1 = new StringBuffer(); StringBuffer theLinks1 = new StringBuffer(); StringBuffer theTexts1 = new StringBuffer(); imgStr.append("<div id=picViwer1 style='background-color: #ffffff' align=center></div><SCRIPT src='js/dynamicImage.js' type=text/javascript></SCRIPT>\n<script language=JavaScript>\n"); thePics1.append("var thePics1=\n'"); theLinks1.append("var theLinks1='"); theTexts1.append("var theTexts1='"); List<HashMap> co = this.select("select * from xinwentongzhi where shouyetupian<>'' and shouyetupian<>'null' and shouyetupian like '%.jpg' order by id desc",1,6); int i = co.size(); int j = 0; for(HashMap b:co) { j++; int id = Integer.parseInt(b.get("id").toString()) ; String title = Info.subStr(b.get("biaoti").toString(), 21) ; String url = ""+b.get("shouyetupian"); String purl = "gg_detail.jsp?id="+b.get("id"); if(j!=i){ thePics1.append(url.replaceAll("\n", "")+"|"); theLinks1.append(purl+"|"); theTexts1.append(title+"|"); } if(j==i){ thePics1.append(url.replaceAll("\n", "")); theLinks1.append("gg_detail.jsp?id="+b.get("id")); theTexts1.append(title); } } thePics1.append("';"); theLinks1.append("';"); theTexts1.append("';"); imgStr.append(thePics1+"\n"); imgStr.append(theLinks1+"\n"); imgStr.append(theTexts1+"\n"); imgStr.append("\n setPic(thePics1,theLinks1,theTexts1,"+width+","+height+",'picViwer1');</script>"); return imgStr.toString(); }
这段代码定义了一个名为`DynamicImage`的方法,该方法接受四个参数:`categoryid`、`cut`、`width`和`height`。方法的返回类型为字符串(String)。
在方法体内,首先声明了四个`StringBuffer`对象,分别用于构建图片(imgStr)、图片链接(thePics1)、链接地址(theLinks1)和图片标题(theTexts1)的字符串。
接下来,代码拼接了一段HTML和JavaScript代码,并引入了一个名为`dynamicImage.js`的JavaScript文件。这段代码创建了一个名为`picViwer1`的DIV元素,并调用`setPic()`函数来设置图片轮播效果。
然后,通过执行SQL查询语句从数据库中获取一些新闻通知的数据,并进行处理。将图片URL、链接地址和标题依次添加到对应的字符串缓冲区中。
最后,将拼接好的字符串进行返回。
需要注意的是,根据代码中的注释,部分代码可能涉及到处理图片路径、字符串截取和数据库查询等功能。完整的功能和用途还需要查看其他相关代码来确定。
class E{ public static void main(String[ ] args) { StringBuffer sb1 = new StringBuffer("hello"); StringBuffer sb2 = new StringBuffer("hello"); if (sb1.equals(sb2)) System.out.printin("equal"); else System.out.printin ("not equal"');
输出结果为"not equal"。虽然sb1和sb2都包含相同的字符串"hello",但是StringBuffer类没有重写equals()方法,因此默认使用Object类的equals()方法,该方法比较的是对象的引用地址,而不是对象的内容。因此,虽然sb1和sb2包含相同的字符串,但是它们在内存中的地址不同,因此equals()方法返回false,输出"not equal"。
阅读全文