//=====================================================================
//Title:JFreeChart入门指南
//Author:谢莫锋 Email:yyxmf111@sogou.com QQ:35814522
//=====================================================================
一、JFreeChart获取。
JFreeChart是JFreeChart公司在开源网站SourceForge.net上的一个项目,该公司的主要产品有如下:
1、JFreeReport:报表解决工具
2、JFreeChart:Java图形解决方案(Application/Applet/Servlet/Jsp)
3、JCommon:JFreeReport和JFreeChart的公共类库
4、JFreeDesigner:JFreeReport的报表设计工具
我们可以从jfree官方网站上获取最新版本和相关资料(但是jfree的document需要40美金才能获取),
获取地址:http://www.jfree.org/jfreechart/index.html(同时可以获得简明介绍)
我们以当前最新版本:jfreechart_0.9.21.zip为例子进行说明。
二、JFreeChart配置安装
1、解压jfreechart_0.9.21.zip到指定位置,其中source是jfreechart的源码,jfreechart-0.9.21-demo.jar
是例子程序(该部分留给大家自己去研究)
2、为了配置成功,我们需要关注的文件有如下三个:jfreechart-0.9.21.jar、lib\jcommon-0.9.6.jar、
lib\gnujaxp.jar
3、如果是Application开发,把上述三个文件拷贝到%JAVA_HOME%\LIB中,同时在环境变量CLASSPATH中加入
如果是WEB开发,以TOMCAT中的一个WEB项目TEST为例子说明:
把上述三个文件拷贝到TEST\WEB-INF\LIB中,然后修改TEST\WEB-INF\web.xml文件,在其中加入如下代码:
DisplayChart
org.jfree.chart.servlet.DisplayChart
DisplayChart
/servlet/DisplayChart
至此jfreechart的配置就完成了,下面就可以进行jfreechart的开发了。这里值得提出的是jfreechart的类
结构设计前后兼容性不是很好,不同版本的jfreechart中类库结构可能不一样,有时候可能需要查源码。如果
是中文显示的时候可能依据观感需要改变源码的字体,不过我个人觉得这个版本比以前版本要好一些。
三、JFreeChart功能介绍
JFreeChart目前是最好的java图形解决方案,基本能够解决目前的图形方面的需求,主要包括如下几个方面:
pie charts (2D and 3D):饼图(平面和立体)
bar charts (regular and stacked, with an optional 3D effect):柱状图
line and area charts:曲线图
scatter plots and bubble charts
time series, high/low/open/close charts and candle stick charts:时序图
combination charts:复合图
Pareto charts
Gantt charts:甘特图
wind plots, meter charts and symbol charts
wafer map charts
(态图表,饼图(二维和三维) , 柱状图 (水平,垂直),线图,点图,时间变化图,甘特图, 股票行情图,混和图, 温度计图, 刻度图等常用商用图表)
图形可以导出成PNG和JPEG格式,同时还可以与PDF和EXCEL关联
JFreeChart核心类库介绍:
研究jfreechart源码发现源码的主要由两个大的包组成:org.jfree.chart,org.jfree.data。其中前者主要与图形
本身有关,后者与图形显示的数据有关。具体研究如果大家有兴趣的话可以自己研究,以后有时间我会告诉大家怎么去
研究源码。
核心类主要有:
org.jfree.chart.JFreeChart:图表对象,任何类型的图表的最终表现形式都是在该对象进行一些属性的定制。JFreeChart引擎本身提供了一个工厂类用于创建不同类型的图表对象
org.jfree.data.category.XXXDataSet:数据集对象,用于提供显示图表所用的数据。根据不同类型的图表对应着很多类型的数据集对象类
org.jfree.chart.plot.XXXPlot:图表区域对象,基本上这个对象决定着什么样式的图表,创建该对象的时候需要Axis、Renderer以及数据集对象的支持
org.jfree.chart.axis.XXXAxis:用于处理图表的两个轴:纵轴和横轴
org.jfree.chart.render.XXXRender:负责如何显示一个图表对象
org.jfree.chart.urls.XXXURLGenerator:用于生成Web图表中每个项目的鼠标点击链接
XXXXXToolTipGenerator:用于生成图象的帮助提示,不同类型图表对应不同类型的工具提示类
四、JFreeChart开发(Application/Applet)
1、pie charts,代码如下
/**
* Description:This application is the first jfreechart
* authort:谢莫锋
* Datetime:20058-02-11
*/
package demo;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.ChartFactory;
import org.jfree.chart.ChartFrame;
import org.jfree.data.general.DefaultPieDataset;
public class FirstJFreeChart {
public FirstJFreeChart() {
}
public static void main(String[] args){
DefaultPieDataset dpd = new DefaultPieDataset();
dpd.setValue("管理人员",25);
dpd.setValue("市场人员",25);
dpd.setValue("开发人员",45);
dpd.setValue("其他人员",5);
//Create JFreeChart object
//参数可以查看源码
JFreeChart pieChart = ChartFactory.createPieChart("CityInfoPort公司组织架构图",dpd,true,true,false);
ChartFrame pieFrame = new ChartFrame("CityInfoPort公司组织架构图",pieChart);
pieFrame.pack();
pieFrame.setVisible(true);
}
}
上面例子可以进一步改进,如下:
/**
* Description:This application is the first jfreechart
* authort:谢莫锋
* Datetime:20058-02-11
*/
package com.cityinforport.demo;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.ChartPanel;
import org.jfree.chart.ChartFactory;
import org.jfree.chart.ChartFrame;
import org.jfree.data.general.DefaultPieDataset;
import org.jfree.chart.plot.PiePlot;
import org.jfree.data.general.PieDataset;
import org.jfree.ui.ApplicationFrame;
import org.jfree.ui.RefineryUtilities;
import java.awt.Font;
import javax.swing.*;
public class FirstJFreeChart extends ApplicationFrame {
//构造函数
public FirstJFreeChart(String s){
super(s);
setContentPane(createDemoPanel());
}
public static void main(String[] args){
FirstJFreeChart fjc = new FirstJFreeChart("CityInfoPort公司组织架构图");
fjc.pack();
RefineryUtilities.centerFrameOnScreen(fjc);
fjc.setVisible(true);
}
//生成饼图数据集对象
public static PieDataset createDataset(){
DefaultPieDataset defaultpiedataset = new DefaultPieDataset();
defaultpiedataset.setValue("管理人员",10.02D);
defaultpiedataset.setValue("市场人员",20.23D);
defaultpiedataset.setValue("开发人员",60.02D);
defaultpiedataset.setValue("OEM人员",10.02D);
defaultpiedataset.setValue("其他人员",5.11D);
return defaultpiedataset;
}
//生成图表主对象JFreeChart
public static JFreeChart createChart(PieDataset piedataset){
//定义图表对象
JFreeChart jfreechart = ChartFactory.createPieChart("CityInfoPort公司组织架构图",piedataset,true,true,false);
//获得图表显示对象
PiePlot pieplot = (PiePlot)jfreechart.getPlot();
//设置图表标签字体
pieplot.setLabelFont(new Font("SansSerif",Font.BOLD,12));
pieplot.setNoDataMessage("No data available");
pieplot.setCircular(true);
pieplot.setLabelGap(0.01D);//间距
return jfreechart;
}
//生成显示图表的面板
public static JPanel createDemoPanel(){
JFreeChart jfreechart = createChart(createDataset());
return new ChartPanel(jfreechart);
}
}
85.84.239.* 于 2007-06-13 01:34:03发表:
86ac249757a7816668a1d30053139572 http://sintesi-design-srl-costermano-vr.yvzcyb.org/ http://e-la-banca-dello-sperma.hivfbp.org/ http://graduatoria-addetto-azienda-agricola-cosenza.yvzcyb.org/ http://cera-una-volta-in-america.rivotb.org/ http://non-riesco-connettermi-vari-sito.hivfbp.org/ http://ascolta-lay-your-hands-simon-webbe.kiyytw.org/ http://ktm-motor-sistem-enduro-sicilia.yvzcyb.org/ http://societa-italiana-condotte-d-acqua-spa.okhyez.org/ http://gioco-on-line-gratis-football.kiyytw.org/ http://ligabue-elisa-ostacoli-cuore-testo.xxcgwu.org/ 416778d26f8af0e18aadb8d947bc0aec
62.42.120.* 于 2007-06-12 02:36:45发表:
941278fbb954085b1f313c1316205c7d http://donna-fanno-sesso-animale-foto.uoyrgt.org/ http://assisi-7-aprile-2000-branduardi.hzuhtu.org/ http://salute-linea-santangelica-santangelica-panty-lipo.ljiwrk.org/ http://critica-film-amico-ritrovato-niente-recensione.dtufrq.org/ http://cover-harry-potter-il-calice.uoyrgt.org/ http://disegni-di-torte-per-compleanno.fkgkox.org/ http://avviene-rinnovo-contratto-tempo-determinato.hzuhtu.org/ http://ospedale-gesu-e-maria-di-napoli.guqsuy.org/ http://teatro-tor-bella-monaca-it.fkgkox.org/ http://addetti-eolico-impianto-addetti-ai-lavoro.fkgkox.org/ 3ebbdc0c5c788c89d957115fc277340d
62.99.117.* 于 2007-06-11 02:39:18发表:
c0b6cd4b13ed8124f8541e2399a991e2 http://d-p-r-395-95.oaxzml.net.in/ http://bertinotti-uomo-piu-elegante-parlamento.innltr.net.in/ http://giochi-ps2-gratis-on-line-online.dtifhu.net.in/ http://sporca-vita-paolo-conte-midi-gratis.mksqkw.net.in/ http://vendita-appartamento-mola-bari-privato.hhknox.net.in/ http://addobbi-nelle-chiese-su-roma.dtifhu.net.in/ http://nokia-auricolare-radio-hs-2r.hhknox.net.in/ http://software-gratis-calcolo-carico-incendio.kfxrfs.net.in/ http://ritenute-fonte-importi-minimi-versare.ooqqld.net.in/ http://monili-celtico-simbolo-significato-celtico-amuleto.innltr.net.in/ 319dbbb4ab069a1bfb4a4d4d12c61dcd
84.120.27.* 于 2007-06-09 02:24:14发表:
7de1cba9c453bc9ee31772ef053c0ed8 http://racconto-rapporto-erotico-donna-animale.akermn.org/ http://lamiera-alluminio-spessore-12-mm.lbpwqo.org/ http://le-nuove-foto-di-ashley-olsen.pauhzy.org/ http://amplificatore-hf-stato-solido-italiano.iumzde.org/ http://directory-sessualita-erotismo-gusti-particolare.lbpwqo.org/ http://www-natale-a-miami-it.qjgasd.org/ http://divieto-di-sosta-con-rimozione.mbxbva.org/ http://strano-io-strana-questa-vita.pauhzy.org/ http://ministero-estero-test-conoscenza-lingua.lbpwqo.org/ http://radio-italia-solo-musica-italiana-frequenza.iumzde.org/ e44c2d91c99facb894d3b26e91151560
201.213.68.* 于 2007-06-08 04:06:03发表:
cfda25da6ec62e8f0b9a36d4d8916385 http://alberghi-dell-isola-d-elba.kkwhbs.org/ http://pallavolo-mondiale-semifinale-brasile-serbia.ivrfxb.org/ http://scoglio-della-galea-capo-vaticano.bzeitz.org/ http://frigorifero-rt-34-mass-samsung.rpddkk.org/ http://monumento-dell-epoca-romana-citta-modena.rpddkk.org/ http://comune-marano-napoli-anagrafe-canina.ulhxdx.org/ http://capezzolo-paola-barale-cronaca-marziane.rpddkk.org/ http://usato-barca-vela-max-9-mt.tpfcwv.org/ http://guns-n-roses-a-milano.tpfcwv.org/ http://eliminare-occhio-rosso-gimp-2.rpddkk.org/ 2e2f8656ca7971267ae7180fc612fe21
190.55.31.* 于 2007-06-07 06:46:41发表:
eb83e1f35a40fbe367b1548d9bc51f93 http://programma-peer-to-peer-gratis.hwqovr.info/ http://decreto-rottamazione-14-novembre-2006.ytqkdb.info/ http://edoardo-de-crescenzo-nuovo-album.odkgrg.info/ http://figura-femminile-dei-poema-omerici.gjtkci.info/ http://marmitta-omologate-kawasaki-er-6-n.dpydtd.info/ http://frasi-di-buon-compleanno-spiritose.odkgrg.info/ http://configurare-modem-router-adsl-michelangelo-wave.odkgrg.info/ http://immagini-satellite-in-tempo-reale.vkzwxs.info/ http://canzone-high-school-musicol-scaricare.lgrhpd.info/ http://francesco-de-gregori-testo-canzone.ciymwb.info/ 6dea66dd0952ca77d762129bda0df247
219.183.96.* 于 2007-06-06 09:47:14发表:
f4b68aaba6aa33f3c0493ff89264231f http://bed-and-breakfast-siena-soggiorno-breve.yyunae.info/ http://voglio-fare-l-amore-con-te.qwoucn.info/ http://frisina-signore-vero-corpo-mp3.jknrtq.info/ http://temi-svolti-sulla-violenza-negli-stadi.lbvsgo.info/ http://centro-per-l-impiego-di-massa.yyunae.info/ http://immobile-vendita-san-teodoro-sardegna.jknrtq.info/ http://vendita-on-line-decoder-digitale-terrestre.xaotvu.info/ http://hofmann-schiaccianoci-re-dei-topo.qwoucn.info/ http://anteprima-video-gratis-scopata-gay.duajwe.info/ http://canali-satellitari-hard-in-chiaro.jknrtq.info/ 11bac96dbb32ab2fd1a6f4018c996a56
81.37.120.* 于 2007-06-05 14:52:11发表:
c5da796d1ebcbce33309db5f73babe34 http://kristian-sbaragli.wkermn.info/ http://jesus-cristh-superstar.fwpjkf.info/ http://cassetta-bauletti-legno-bottiglia.dvtuzm.info/ http://calcolatore-pagamento-ipotecario-monthly.uyohtb.info/ http://eleonoire-casa-legno.dhvvfi.info/ http://dowloand-curriculum-europeo.boixkk.info/ http://giorgino-onorevole.fwpjkf.info/ http://rivenditore-minimoto-ariccia.fwpjkf.info/ http://pantacollant-uomo-wolford.dvtuzm.info/ http://discoteca-fattoria-capriolo-web-site.kbucdn.info/ 4080af707aca2bbb96231fb1b4743d28
84.127.220.* 于 2007-06-04 20:18:54发表:
d7aa3b31802abbddcafa765c1e3fa4ad http://legge-5-ottobre-1991-n-317.dlmpxx.org/ http://vigo-di-fassa-hotel-fontana.vprmbs.org/ http://bomboniere-solidali-medici-senza-frontiere.dlmpxx.org/ http://donna-godono-farsi-leccare-piede.vprmbs.org/ http://diritto-dei-lavoratori-dei-datori-lavoro.divuvu.org/ http://comune-di-san-giovanni-al-natisone.xcwjal.org/ http://cioffi-pratola-serra-vittorio-emanuele.nfvzoo.org/ http://hotel-nogent-sur-marne-parigi.divuvu.org/ http://giocare-online-a-football-manager.dqiqbg.org/ http://foto-spinello-fumo-droga-leggere.dlmpxx.org/ e2344a7b53a49ae4d6fdb2a64dbf9945
88.2.186.* 于 2007-06-04 00:38:44发表:
d01db5941869f18812b724457f670e16 http://mongolfieracartavelinacostruire.akqcvy.org/trucco-getaway-black-monday-ps2/index.htm http://schematecnicotvgoodmans.seyzuo.org/saval-maddalena/index.htm http://schemapuntocrocepreciousmoments.nlamku.org/reagroup-italia-spa/index.htm http://gattoplasmacellularelesioniorale.inkrxe.org/altopascio-geologia/index.htm http://irmaallestimentometallico.seyzuo.org/panelli-acustici/index.htm http://selfcareliberoitpassword.seyzuo.org/bracciale-farfalla-nomination/index.htm http://prevenditebrignano.inkrxe.org/milano-restaurazione-cinque-giornata-skira/index.htm http://conteggibiliardo.seyzuo.org/scheda-verifica-analisi-testuale-carducci/index.htm http://novellatrenosoffiatoluigipirandello.nlamku.org/trucco-neopet/index.htm http://nuovoducato2300130cvmeccanica.nlamku.org/prezzo-montascale-ruota/index.htm 83869c431dabc6ba13fe3e3c64cc8ac5
201.231.108.* 于 2007-06-03 06:47:59发表:
3ffea618ba5b198e388abe1f35c6896d http://miscelatoreazimut.sdibjo.org/acqua-gai-ventimiglia/index.htm http://scritturacontabiletrasferimentoimmobilerimanenza.lskson.org/norauto-bollate/index.htm http://pistolaelettrostaticheverniciaturapolveri.lskson.org/dietro-copertina-bau-mina/index.htm http://truccocossacks1.sdibjo.org/gangbangroma-com/index.htm http://civettaapparatodigerente.ksibgs.org/comodato-precario-restituzione-urgente-bisogno/index.htm http://simonetomassinibarbalunga.sdibjo.org/regg-autonoma-sardegna-it/index.htm http://teuco2bidromassaggio.ksibgs.org/casa-vancanza-anziano-lago-garda/index.htm http://gallenoattilio.lskson.org/atassia-friederich/index.htm http://buddismoprecettomonacomonaca.sdibjo.org/saxo-vts-16v-calabria/index.htm http://ieocellulastaminale.lskson.org/foto-pacha-alcamo-marina/index.htm 691e5261e7f26fe9bfca38d324fb1940
201.233.144.* 于 2007-06-02 11:03:25发表:
d2b5be4bb14b9934cfbe6df61fbd4d74 http://klariceferraro.seyzuo.org/ba-soddu-yahoo-it/index.htm http://custodiacdmorbide1cm.nlamku.org/foto-lamborghini-truccata/index.htm http://alcholl120.seyzuo.org/club-prive-fashon-milano/index.htm http://istitutoneurologicovesta.beajbg.org/transpotec-logic/index.htm http://metzelerocchiale.akqcvy.org/tegola-decorate-3d/index.htm http://salottomoddado.akqcvy.org/cluedo-live-gioco-scatola-grande/index.htm http://tecnicaingrossarepene.beajbg.org/significato-glabella/index.htm http://googleitwwwikeait.inkrxe.org/esecuzione-dei-rilievo-specie-epifite/index.htm http://attiliclinicapancreatiticronica.seyzuo.org/pallina-natale-vetro-soffiato/index.htm http://telaiobicilook386.akqcvy.org/ricorso-respinto-confisca-ciclomotore/index.htm 63aa5c5d6850cbd0ab7a0b3644130d9e
82.229.210.* 于 2007-06-01 16:19:08发表:
5b4aa10eff44ad0768d128d09a8afd9d http://ombrellonefustolegno.gkgobd.org/sterilizzatore-milton/index.htm http://transinculatiasino.leikrf.org/via-luchino-verna-roma/index.htm http://francescocozzapittorestilese.gkgobd.org/incanto-di-boccadarno/index.htm http://calicemontenapoleone.pdjkai.org/condizionatore-fisso-unit-e0/index.htm http://professoressamatematicamolestie.uzghnh.org/elias-canetti-muta-religione/index.htm http://ireneghergo.leikrf.org/industria-insonorizzazione-musicale-lucca/index.htm http://eutimilsmettere.uzghnh.org/mediolanum-pompa-funebre/index.htm http://laminazionelavorazionemeccanicaincollaggiolegnomassiccio.leikrf.org/scala-pieghevole-facal/index.htm http://caricabatteriaautobechersatellitasre.pdjkai.org/fornitore-forno-elettrode-milano-provincia/index.htm http://mmsanimatobenvenutowindbuonanotte.mljuyb.org/immagine-tweety-ostia-torta/index.htm 5447788e0ee79eeca3d64876f41eb1cf
190.39.252.* 于 2007-05-30 08:37:40发表:
006820f70505305796a81ea9faf3df85 http://pegekq.org/site/site-bbb-globo-globo-bbb.html http://pegekq.org/prefeitura/prefeitura-de-eldorado.html http://pegekq.org/receptores/receptores-tv-cabo.html http://ifrtox.org/racionais/racionais-favela-vivo.html http://ifrtox.org/assalto/assalto-carro-fortes.html http://ifrtox.org/shr/shr-sistema-hospedagem.html http://ifrtox.org/capa/capa-moto-honda-titans.html http://mnopyi.org/jogo/jogo-avulsos.html http://ifrtox.org/campanha/campanha-fraternidade-1966.html http://mnopyi.org/guincho/guincho-rampa.html a91f06099d8916d08fc86aebeef191c8
200.45.35.* 于 2007-05-29 07:21:26发表:
ea1bcfcd04d5b77bc99c4096df2f452d http://lcitij.org/fotografada/fotografada-calcinha.html http://sxrzpn.org/marquinhos/marquinhos-menezes.html http://lcitij.org/site/site-ig-br-www-prefeitua-sp-gov-br.html http://grpytd.org/quimica/quimica-celular.html http://xwqumn.org/consultar/consultar-spc-gratis.html http://lcitij.org/grafico/grafico-ponto-cruz-helo-kit.html http://grpytd.org/adriana/adriana-ribeiro-sampaio-campina.html http://grpytd.org/trico/trico-passo-a-passo.html http://sxrzpn.org/nome/nome-usina-etanol.html http://xvqeoy.org/cao/cao-raca-boxer.html ea84313ff4cf4b8bb8ec851c693c83a5
190.16.147.* 于 2007-05-28 15:12:55发表:
1d749da1500edd6d3e2481cfe1cd5c43 http://xvqeoy.info/pierre/pierre-telles-filho.html http://grpytd.info/curso/curso-de-direcao-defensiva-gratis.html http://xvqeoy.info/maisvoce/maisvoce-com-redeglobo.html http://mnopyi.info/motocicleta/motocicleta-importadas.html http://ifrtox.info/haras/haras-soledade.html http://xvqeoy.info/tcc/tcc-custo.html http://mnopyi.info/aparelho/aparelho-de-raio-x.html http://ifrtox.info/orquidea/orquidea-nativas.html http://mnopyi.info/produto/produto-nacional-bruto.html http://pegekq.info/maquina/maquina-processador-alimento.html 921da3b25f91ff5411abb8e73f72697f
200.8.74.* 于 2007-05-27 23:30:49发表:
316a7404e7c45e19562bbd7a009a9704 http://sxrzpn.info/produto/produto-suas-qualidade.html http://lcitij.info/joao/joao-pulo-destaques-tv.html http://xwqumn.info/cemita/cemita-rio.html http://wfcqxw.info/motor/motor-lixar-pe.html http://xwqumn.info/nbl/nbl-informatica.html http://lcitij.info/plexo/plexo-femural.html http://sxrzpn.info/jogo/jogo-de-pistola.html http://xwqumn.info/foto/foto-de-sexo-da-playboy.html http://sxrzpn.info/show/show-domingo-25-marco-2007-sao-paulo.html http://xwqumn.info/alessandra/alessandra-proenca.html 6d9dd05b81c19c63ae8e87cbbcfe2050
217.216.178.* 于 2007-05-27 07:22:34发表:
72b916e1d9799e0eeec9adddfddf75e6 http://ifrtox.info/fotoshop/fotoshop-em-portugues.html http://mnopyi.info/ipva/ipva-valor-ipva.html http://pegekq.info/codigo/codigo-de-municipio-do-rs.html http://pegekq.info/curso/curso-programaa-gra-tis.html http://xvqeoy.info/cacete/cacete-negao.html http://pegekq.info/link/link-afiliadas-globo.html http://mnopyi.info/prefeitura/prefeitura-municipal-vitoria-secretaria-educacao.html http://mnopyi.info/detonado/detonado-completo-final-fantasy-6.html http://pegekq.info/mhc/mhc-gnx800.html http://mnopyi.info/inmetro/inmetro-146-06.html 899833c87d41a40d77c99858b4681e10
85.28.74.* 于 2007-05-26 17:14:08发表:
d2a6676bcc6525eb46360bbb76a3c1b9 http://wfcqxw.info/porta/porta-retrato-cachoeira-sul-rs.html http://sxrzpn.info/radio/radio-comercial-clix-pt.html http://lcitij.info/hospital/hospital-psiquiatria-guarapiranga.html http://wfcqxw.info/site/site-ig-br-www-cats-g12-br.html http://xwqumn.info/cinema/cinema-barra-shopping.html http://ovvkft.info/musica/musica-excesso-bagagem.html http://sxrzpn.info/controlador/controlador-grupo-gerador.html http://lcitij.info/jogo/jogo-buzio-tarot.html http://lcitij.info/retirar/retirar-fgts-trabalhando.html http://xwqumn.info/alteracoes/alteracoes-renais-gestacao.html 3c6c60ce2277246c0f4063c97808fccb
200.109.79.* 于 2007-05-16 03:20:32发表:
http://d3be82b31f4974d6af16840d3171011e-t.qwoypw.info d3be82b31f4974d6af16840d3171011e http://d3be82b31f4974d6af16840d3171011e-b1.qwoypw.info d3be82b31f4974d6af16840d3171011e http://d3be82b31f4974d6af16840d3171011e-b3.qwoypw.info b43a48a848da56275457e93295654b68