我真的很想为我的一个项目提供帮助。我是一名平面设计专业的学生,几乎没有编程经验。我已经为 Thermo 迷你打印机创建了一个程序,它可以根据使用的特定主题标签识别在 Twitter 上发布的推文并自动打印它们。
但是,它基于 32 个字符的行长,并将单词分成两半,而不是将整个单词移动到另一行。我的一个朋友建议使用自动换行,但我在网上找不到任何可以帮助我的东西,而且我发现的大多数代码往往是用于 c++ 或 c#。
到目前为止的代码可以在下面找到:
// Build an ArrayList to hold all of the words that
// we get from the imported tweets
ArrayList<String> words = new ArrayList();
Twitter twitter;
import processing.serial.*;
Serial myPort; // Create object from Serial class
int val; // Data received from the serial port
void setup() {
String portName = Serial.list()[0];
myPort = new Serial(this, portName, 9600);
//Set the size of the stage, and the background to black.
size(550,550);
background(0);
smooth();
//Make the twitter object and prepare the query
twitter = new TwitterFactory(cb.build()).getInstance();
}
void draw() {
Query query = new Query("#R.I.P");
query.setRpp(1);
//Try making the query request.
try {
QueryResult result = twitter.search(query);
ArrayList tweets = (ArrayList) result.getTweets();
for (int i = 0; i < tweets.size(); i++) {
Tweet t = (Tweet) tweets.get(i);
String user = t.getFromUser();
String msg = t.getText();
Date d = t.getCreatedAt();
println("Tweet by " + user + " at " + d + ": " + msg);
msg = msg.replace("\n"," ");
myPort.write(msg+"\n");
};
}
catch (TwitterException te) {
println("Couldn't connect: " + te);
};
println("------------------------------------------------------");
delay(20000);
}