处理和API

时间:2014-07-02 06:41:13

标签: twitter processing

这是代码的最重要部分:

import java.util.* ;

//Build an ArrayList to hold all of the words that we get from the imported tweets
ArrayList<String> words = new ArrayList();

void setup() {
  //Set the size of the stage, and the background to black.
  size(800,800);
  background(0);
  smooth();
  frameRate(5);

  //Credentials
  ConfigurationBuilder cb = new ConfigurationBuilder();

我正在尝试做类似Jer Thorp的教程:http://blog.blprnt.com/blog/blprnt/quick-tutorial-twitter-processing 我不断收到错误:找不到名为“ConfigurationBuilder”的类或类型 当我尝试拖放文件时,我试图导入内容并不断出现错误 - 任何建议?

1 个答案:

答案 0 :(得分:0)

您应该只需将库.jar文件拖到Processing编辑器上即可。确保获得正确的.jar文件,您可以通过将其检查为存档文件或使用jar tf命令来检查该文件。

您也可以使用Sketch导入库 - &gt;导入库菜单。如果尚未安装库,则您必须使用此处列出的步骤手动安装它:http://wiki.processing.org/w/How_to_Install_a_Contributed_Library