本文介绍了用isbn获取书的照片(书的封面)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的,
我从isbndb.com上用此代码获得了本书的详细信息,

hi dears,
i get detail of book with this code from isbndb.com,

string url = @"http://isbndb.com/api/books.xml?access_key=5X5U83P4&results=" + cboresulttype.Text + "&index1=" + Cbosearchtype.Text + "&value1=";
   HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
                req.Timeout = 20000;
                HttpWebResponse res = (HttpWebResponse)req.GetResponse();
                StreamReader sr = new StreamReader(res.GetResponseStream());
                string txt = sr.ReadToEnd();
.
.
.
.



现在我要得到书的照片(书的封面)?
我该怎么做?



now i want get the photo(cover of book) of book??
how i can???

推荐答案

写道:


ISBNdb.com实际上并未提供封面图片.它们具有有用的API,可用于查找有关给定ISBN的更多信息,而不是封面图像.


ISBNdb.com doesn''t actually provide the cover image. They have an useful API for finding out more information about a given ISBN, but not the cover image.



问候,

—曼弗雷德(Manfred)



Regards,

— Manfred


这篇关于用isbn获取书的照片(书的封面)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-23 06:43