gpt4 book ai didi

java - 我如何调用 Intent 并将其放入我的 vector 中?

转载 作者:行者123 更新时间:2023-11-30 04:50:40 25 4
gpt4 key购买 nike

    b = this.getIntent().getExtras();
s = this.getIntent().getStringExtra("DEFAULTTEXT");

public void onClick(View v)
{


String a = "http://152.226.152.156:1010/jsp-examples/test1";
URL url = null;
HttpURLConnection httpurlconnection = null;
try {
url = new URL(a);
httpurlconnection = (HttpURLConnection) url
.openConnection();
httpurlconnection.setDoOutput(true);
httpurlconnection.setRequestMethod("POST");


Toast.makeText(Booking.this, a, Toast.LENGTH_SHORT).show();
Toast.makeText(Booking.this, "Toast1", Toast.LENGTH_SHORT).show();
ObjectOutputStream dos = new ObjectOutputStream(httpurlconnection.getOutputStream());
SendVEctor.add(txtArrivalTime.getText().toString());
SendVEctor.add(txtFerry.getText().toString());
SendVEctor.add(txtStatus.getText().toString());
SendVEctor.add(txtDestination.getText().toString());
SendVEctor.add(s.toString());

dos.writeObject(SendVEctor);

dos.close();

s 将是我的 Intent ,我将如何将其放入我的 SendVEctor?

谢谢。

最佳答案

我不知道 Intent 是什么。但是你可以这样做,

Vector<Intent> sendVector = new Vector<Intent>();
sendVector.add(this.getIntent());

我假设 SendVEctor 是一种 Vector,因此向其添加对象是完全合法的。如果您能进一步阐明这个问题,那就更好了。

SendVEctor sVector = new SendVEctor();
sVector.add(this.getIntent())

关于java - 我如何调用 Intent 并将其放入我的 vector 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3563224/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com