私のプロジェクトの 1 つを手伝ってもらいたいです。私はグラフィックデザインの学生で、プログラミングの経験はほとんどありません。使用されている特定のハッシュタグに基づいて 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);
}